微信小程式 標籤傳入數據

不言
發布: 2018-06-27 09:49:03
原創
3951 人瀏覽過

這篇文章主要介紹了微信小程式標籤傳入資料的相關資料,需要的朋友可以參考下

微信小程式標籤傳入資料

中用for迴圈傳入多個成對不同資料時的實作方法。

看下效果圖:

遍歷實作方法:wxss省略:

wxml中程式碼:

<!--导航部分轮播图-->
<swiper class="navban" indicator-dots="{{indicatorDots}}" interval="{{interval}}" duration="{{duration}}">
    <swiper-item>
      <block wx:for="{{navs}}">
        <view class="navbox">
          <image class="navimg" src="{{item.navimg}}"></image>
          <text class="navtext">{{item.navtext}}</text>
        </view>
       </block>
    </swiper-item>  
</swiper>
登入後複製

相對應js裡面的程式碼:

var app = getApp()
Page({
 data: {
  navs:[
   { navimg:&#39;/images/i01.png&#39;, navtext:&#39;掌上信息&#39;},
   { navimg:&#39;/images/i02.png&#39;, navtext:&#39;商家&#39;},
   { navimg:&#39;/images/i03.png&#39;, navtext:&#39;抢购&#39;},
   { navimg:&#39;/images/i04.png&#39;, navtext:&#39;抢福利&#39;},
   { navimg:&#39;/images/i05.png&#39;, navtext:&#39;五折卡&#39;},
   { navimg:&#39;/images/i06.png&#39;, navtext:&#39;黑猫活动&#39;},
   { navimg:&#39;/images/i07.png&#39;, navtext:&#39;本地圈&#39;},
   { navimg:&#39;/images/i08.png&#39;, navtext:&#39;顺风车&#39;},
  ],
  indicatorDots: true,
  autoplay: true,
  interval: 2000,
  duration: 1000,
 }
 
})
登入後複製

以上就是本文的全部內容,希望對大家的學習有幫助,更多相關內容請關注PHP中文網!

相關推薦:
微信小程式setData的使用方法


#微信小程式template範本的分析


微信小程式圖表外掛程式(wx-charts)的介紹

##### #

以上是微信小程式 標籤傳入數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!