
微信小程序
qq_36294683
分析前端开发经验总结
展开
-
微信小程序顶部用 scroll-view 组件横向滚动,类似tab选项卡的效果,
<view class='nav'><scroll-view class="nva_scorll" scroll-x scroll-with-animation> <view wx:for="{{navDate}}" class="{{curMeal===index ? 'selected-meal':'meal-time-item'}}" data-index=".原创 2018-02-26 10:45:01 · 6979 阅读 · 1 评论 -
微信小程序ajax请求数据以及用template遍历数据 简单实例
1.wx.request请求数据index.js文件 onLoad: function () { var that = this; wx.request({ url: 'https://route.showapi.com/90-87?######=f1161d6416e74e1b821485dd8554ef6b&tid=###',//要遍历的url,http没...原创 2018-03-05 10:53:04 · 2676 阅读 · 0 评论 -
微信小程序页面跳转注意事项
跳转的方法 wx.navigateTo({ //子集,限制只能用5级,这种方法会自带一个返回按钮 url: '../posts/posts',}); wx.redirectTo({ 没有返回按钮 url: '../posts/posts',})wx.switchTab({ //跳转到tab页面只能用switchTab url: '../posts/posts'})...原创 2018-04-19 17:57:41 · 407 阅读 · 0 评论