如题,开发者工具,真机都不行,可以的你们告诉我下怎么做才能实时获取到input值,并在模板中使用??
< form bindsubmit = "formSubmit" > < input type = "text" id = "ipt_key" value="{{param.keyword}}
name = "keyword" bindinput = "keyInput" /> < button form-type = "submit" class = "btn" >搜索</ button > </ form > |
keyInput: function (e) { var key = e.detail.value; // 这里不管更新哪个,都会导致无法输入中文 this .setData({ 'param.keyword' : key, 'inputKeyword' : key }); this .matchHistory(key); } |
使用姿势不对??
你想说什么啊
我试了试可以输入中文的