この記事では主に WeChat ミニ プログラムの読み込みについて詳しく紹介します。クリックして他の機能を参照してください。興味のある方は参考にしてください。
この記事の例は WeChat ミニ プログラムの読み込みを共有します。追加の関数を実装するための具体的なコードは次のとおりです。
WeChat アプレットは、concat を使用して、load をクリックして要求されたデータを結合し、setData を実行します。以下は単純なクリです:
index.wxmlコードは次のとおりです
<view wx:for="{{duanziInfo}}" wx:for-item="name" wx:for-index="id"> <view class="duanzi-view"> <view class="duanzi-content"> <text class="dz-content">{{name.content}}</text> </view> </view> </view> <view class="button-wrapper"> <button type="default" size="default" loading="{{loading}}" disabled="{{disabled}}" bindtap="setLoading"> {{loadText}} </button> </view>
もっと読み込むButtonBindingsetLoading
インデックス .jsファイルコード 初期化と読み込み中における印刷データは以下の通りです
Page({ data: { loadText:'加载更多', duanziInfo:[] }, //初始化请求 onLoad: function (res) { var that = this //内容 wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(res.data.result) //打印初始化数据 that.setData({ duanziInfo:res.data.result }) } }) }, //加载更多 setLoading: function(e) { var duanziInfoBefore = this.data.duanziInfo var that = this wx.showToast({ //期间为了显示效果可以添加一个过度的弹出框提示“加载中” title: '加载中', icon: 'loading', duration: 200 }) wx.request({ url: 'http://xxxxx.com/index.php?m=Industry&a=getDuanziInfo', data: {token:token}, method: 'GET', success: function(res){ console.log(duanziInfoBefore.concat(res.data.result)) //打印拼接之后数据 that.setData({ loadText:"数据请求中", loading:true, duanziInfo:duanziInfoBefore.concat(res.data.result), loadText:"加载更多", loading:false, }) } }) } })
初期化と読み込み中における印刷データは以下の通りです
以上がこの記事の全内容だと思います。皆さんの学習に役立ちますので、皆さんも PHP 中国語 Web サイトをサポートしていただければ幸いです。
以上がWeChat ミニ プログラムをさらに読み込むと、クリックしてさらに機能の紹介が表示されますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。