摘要:
1.配置上拉内容:在局部(.json)配置或者是全局配置 (app.json) "enablePullDownRefresh": true 2.在utils文件夹下创建一个request.js 这里面是用来配置promise的 就相当于是ajax请求 3.在创建的js 文件的最上边引入模块 或者定义 阅读全文
摘要:
wxml: bindinput事件是实时获取用户内容的事件 <input model:value="{{msg}}" class="ipt" type="text" bindinput='getValue'/> <view>{{msg}}</view> wxjs: data: { msg:"" }, 阅读全文
摘要:
在wxml里面绑定跳转的id <navigator url="../first/first?id={{item.id}}"></navigator> 阅读全文
摘要:
这个nodes就是用来绑定节点或html的 这个details就是data下面定义的键 details:{} <rich-text nodes='{{details.content}}' ></rich-text> 阅读全文
摘要:
小程序里面增加类名是直接写类名 因为小程序里面没有v-bind绑定 在wxml里面写: 在xx.js里面写: 阅读全文