- 韩文输入Bug
3.4.3 在textarea中输入韩文时,出现了辅音和元音分离的现象 <!-- Announcement input --> <view class="input-group"> <view class="title"> <text>▶︎ Announcement:</text> </view> <view class="contents"> <textarea bindinput="inputAnnouncement" rows="5" cols="20">{{announcement}}</textarea> </view> </view>[图片]
2024-05-11 - Remote Debug Problem?
[图片] When remote debugging is done on a mobile phone, a SystemError occurs: (appServiceSDKScriptError)glassEaselAdapter is not defined. How can this be resolved?
2024-05-10 - How can I fix the Korean input to work properly?
[图片] While developing a mini-program, I While developing a mini-program, I have a simple text input field like this: <view class="input-container"> <input type="text" placeholder="Please enter here" /> </view> Korean input works well in the Devtools Simulator, but when I use Preview to input on an actual phone, I encounter a problem where the Korean input doesn't work properly. For example, when I try to enter "강", it comes out as "가ㅇ", with the final consonant separated. 如何才能使韩文输入正确呢? 在开发小程序时,我有一个简单的文本输入框,如下: <view class="input-container"> <input type="text" placeholder="请在此输入" /> </view> 在Devtools模拟器中韩文输入很正常,但当我使用Preview在实际手机上输入时,韩文输入就出现了问题。 例如,我尝试输入“강”时,它变成了“가ㅇ”,收尾字母被分开了。 请求您的帮助。 Thanks.
2024-01-04