不二如是 发表于 2018-6-22 10:41:05

044 ∞ 表单组件:form

本帖最后由 不二如是 于 2018-6-22 10:41 编辑

http://xxx.fishc.com/forum/201805/02/171248f4zdsipf6d4qjnjl.png

上一讲搞定了checkbox,本次来学习form。

form,表单,将组件内的用户输入的:<switch/> <input/> <checkbox/> <slider/> <radio/><picker/>提交。

当点击 <form/> 表单中 formType 为 submit 的 <button/> 组件时。

会将表单组件中的 value 值进行提交,需要在表单组件中加上 name 来作为 key。

属性:

属性名        类型        说明
report-submit        Boolean        是否返回 formId 用于发送模板消息
bindsubmit        EventHandle        携带 form 中的数据触发 submit 事件,event.detail = {value : {'name': 'value'} , formId: ''}
bindreset        EventHandle        表单重置时会触发 reset 事件


index.wxml:
<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>

index.js:
Page({
formSubmit: function (e) {
    console.log('form发生了submit事件,携带数据为:', e.detail.value)
},
formReset: function () {
    console.log('form发生了reset事件')
}
})


控制台输出:





课后作业


1、重置form表单需要用到什么属性?
a.bindsubmitb.bindresetc.report-submitd.reset



答案:
**** Hidden Message *****



如果有收获,别忘了评分{:10_281:} :

http://xxx.fishc.com/forum/201709/19/094516hku92k2g4kefz8ms.gif

这位鱼油,如果喜欢小程序,请订阅 专辑☞(传送门)(不喜欢更要订阅{:10_297:} )

http://xxx.fishc.com/forum/201803/21/151715umqz1qoywp11wjbq.gif
页: [1]
查看完整版本: 044 ∞ 表单组件:form