微信小程序表單組件form,微信小程序form表單
2017-12-22
導(dǎo)讀:微信小程序form 表單,將組件內(nèi)的用戶輸入的 switch/ input/ checkbox/ slider/ radio/ picker/ 提交。 當(dāng)點(diǎn)擊 form/ 表單中 formType 為 submit 的 button/ 組件時(shí),會(huì)將表單組件中的 value 值進(jìn)行提交,需要...
微信小程序form
表單,將組件內(nèi)的用戶輸入的<switch/>
<input/>
<checkbox/>
<slider/>
<radio/>
<picker/>
提交。
當(dāng)點(diǎn)擊<form/>
表單中 formType 為 submit 的<button/>
組件時(shí),會(huì)將表單組件中的 value 值進(jìn)行提交,需要在表單組件中加上 name 來(lái)作為 key。
屬性名 | 類型 | 說(shuō)明 |
---|---|---|
report-submit | Boolean | 是否返回formId用于發(fā)送模板消息 |
bindsubmit | EventHandle | 攜帶form中的數(shù)據(jù)觸發(fā)submit事件,event.detail = { value : {"name":"value"} , formId:"" } |
bindreset | EventHandle | 表單重置時(shí)會(huì)觸發(fā)reset事件 |
示例代碼:
<form bindsubmit="formSubmit" bindreset="formReset">
<view class="section section_gap">
<view class="section__title">switch</view>
<switch name="switch"/>
</view>
<view class="section section_gap">
<view class="section__title">slider</view>
<slider name="slider" show-value ></slider>
</view>
<view class="section">
<view class="section__title">input</view>
<input name="input" placeholder="please input here" />
</view>
<view class="section section_gap">
<view class="section__title">radio</view>
<radio-group name="radio-group">
<label><radio value="radio1"/>radio1</label>
<label><radio value="radio2"/>radio2</label>
</radio-group>
</view>
<view class="section section_gap">
<view class="section__title">checkbox</view>
<checkbox-group name="checkbox">
<label><checkbox value="checkbox1"/>checkbox1</label>
<label><checkbox value="checkbox2"/>checkbox2</label>
</checkbox-group>
</view>
<view class="btn-area">
<button formType="submit">Submit</button>
<button formType="reset">Reset</button>
</view>
</form>
Page({
formSubmit: function(e) {
console.log('form發(fā)生了submit事件,攜帶數(shù)據(jù)為:', e.detail.value)
},
formReset: function() {
console.log('form發(fā)生了reset事件')
}
})
更多微信小程序開(kāi)發(fā)教程,可以關(guān)注hi小程序。
第二部分:如何開(kāi)通一個(gè)小商店
您可能感興趣: