微信小程序怎么獲取用戶輸入內(nèi)容
2018-04-27
導(dǎo)讀:小程序獲取用戶輸入內(nèi)容,通過組件的屬性 bindchange 將用戶輸入的儲(chǔ)存存起來來實(shí)現(xiàn)。...
小程序獲取用戶輸入內(nèi)容,可以通過組件的屬性 bindchange 將用戶輸入的儲(chǔ)存存起來test.wxml <input id="postalCode" bindchange="bindChange" type="number" placeholder="輸入郵政編碼" auto-focus /> <input id="mail" bindchange="bindChange" type="number" placeholder="請輸入郵箱地址" /> test.js
var inputContent = {}
Page({
data: {
inputContent: {}
},
bindChange: function(e) {
inputContent[e.currentTarget.id] = e.detail.value
}
})
后臺(tái)輸出
第二部分:如何開通一個(gè)小商店
您可能感興趣: 小程序開發(fā)