第六篇、微信小程序-form组件

表单:

将组件内的用户输入的<switch/> <input/> <checkbox/> <slider/> <radio/> <picker/> 提交

 

主要属性:

效果图:

 

ml:

<!--头像-->
<view style="display:flex;justify-content: center;">
    <image  style="width:130rpx;height:130rpx;border-radius:50%;margin-top:10%;" src="../../image/logo.jpg"> </image>
</view>
<!--
form表单组件 是提交form内的所有选中属性的值,
注意每个form表单内的组件都必须有name属性指定否则提交不上去,
button中的type两个submit,reset属性分别对应form的两个事件
-->
<form bindsubmit="listenFormSubmit" bindreser="listenFormReser" >
    <!--用户名与密码-->
    <View  class="inputView">
        <input  class="input" name="username"  type="number" placeholder="请输入账号" placeholder-style="color: gray"> </input>
    </View>
    <view class="inputView">
        <input class="input" name="password" password="true" placeholder="请输入密码" placeholder-style="color: gray"/>
    </view>
    <!--登录用户类型-->
    <View style="display:flex;justify-content: center;margin-top:10px;">
        <radio-group name="radio-group" bindchange="radioChange">
            <label>
                <radio value="manager" checked="true"/>管理员
            </label>
            <label>
                <radio value="tearch" checked="true"/>老师
            </label>
            <label>
            <radio value="student" checked="true"/>学生
            </label>
        </radio-group>
        <!--忘记密码-->
        <label>
            <switch name="switch" type="checkbox" checked bindchange="switch1Change" style="margin-left:20px;"/>
            <Text style="font-size: 14px;padding-left:5px;">忘记密码?</Text>
        </label>
    </View>
    <!--button formType属性两个可选值submit, reset分别会触发form的bindsubmit,bindreser事件 -->
    <button formType="submit" type="primary" style="margin-top:10px;">提交</button>
    <button formType="reset" type="warn" style="margin-top:10px;">重置</button>
</form>

 

ss:

.input{
    padding-left: 10px;
    height: 44px;
}
.inputView{
    /*边界:大小1px, 为固体,为绿色*/
    border:  1px solid green;
    /*边界角的弧度*/
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 15px;
}

 

js:

Page({
  data:{
    // text:"这是一个页面"
  },
  //点击提交
  listenFormSubmit:function(e){
      console.log('listenFormSubmit=',e.detail.value)
  },
  //点击重置
  listenFormReser:function(e){
      console.log('listenFormReser=',e.detail.value)
  },
  //点击忘记密码
  switch1Change:function(e){
    console.log('switch1Change=',e.detail.value)
  },
   //当选中某一个的时候回调该函数。e.detail.value:获取选中某个radio的value
  radioChange: function(e) {
    console.log('radio发生change事件,携带value值为:', e.detail.value)
  }
})

 

注意

form表单组件 是提交form内的所有选中属性的值,

注意每个form表单内的组件都必须有name属性指定否则提交不上去,

button中的type两个submit,reset属性分别对应form的两个事件

转载于:https://www.cnblogs.com/HJQ2016/p/5988684.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
微信小程序是一种基于微信平台的应用的开发模式,可以快速的开发出符合用户需求的小程序。在小程序的开发中,组件是一个非常重要的概念,通过组件可以实现复用性和模块化编程思想。 组件应用是小程序开发的基础。通过组件可以将某一模块化并封装起来,使得组件可以在不同的页面间得到复用,大大提升了开发效率并减少了代码冗余。微信小程序提供了丰富的自带组件,包括文本、图片、按钮、输入框等等,开发者也可以自己开发组件来满足自己的需求。实际开发中,通过组件可以快速搭建页面框架和业务逻辑。 Demo是一个演示小程序的示例程序。在小程序的实际开发过程中,一个好的Demo非常重要。通过Demo,开发人员可以更深入的了解小程序的开发流程、组件的应用和实际的业务开发等等。在Demo中,通常会包括小程序的一些基础操作,如页面跳转、数据绑定、组件的使用等。而在实际开发中,Demo还会包括一些复杂的业务场景,如支付、登录、数据列表展示等等。Demo不仅为开发者提供了学习和实践的机会,也方便了使用者了解该小程序的功能和特点。 总之,微信小程序组件的应用和Demo的开发都是小程序开发过程中非常重要的两个部分。良好的组件应用和精心设计的Demo,可以在极短的时间内实现小程序开发。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值