您好,登錄后才能下訂單哦!
小編給大家分享一下微信小程序引入模板的方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
微信小程序引入模板的方法:
第一種:通過import引入
<!-- currency.wxml --> <!-- 首先創建一個currency項目,里面放的是你要引入的內容 --> <template name="shopCase"> <view class="shopCase" wx:for="{{data}}" wx:key="{{index}}"><!-- data為自定義 接收父頁面傳入的數據 --> <text class="shopCase-price">¥{{item.price}}</text> </view> </template> <template name="howe"> <text>在index頁面,is那個name,才會引入哪個<text/> <template/>
<!-- index.wxml --> <import src="../components/currency/currency.wxml"/> <!-- 在所要應用的頁面導入路徑 --> <template is="shopCase" data="{{data:shoping}}"><template/> <!-- 將js里名為shoping的數據 賦給data -->
第二種:通過include導入
include 可以將目標文件除了 <template/> <wxs/> 外的整個代碼引入
<!-- currency.wxml --> <!-- 首先創建一個currency項目,里面放的是你要引入的內容 --> <view class="shopCase" wx:for="{{data}}" wx:key="{{index}}"> <text class="shopCase-price">¥{{item.price}}</text> </view> <template name="howe"> <text>這個不會被引用<text/> <template/>
<!-- index.wxml --> <include src="currency.wxml"/><!-- 這個就相當于上面的名為shopCase的view,而不會引入template里的內容 -->
看完了這篇文章,相信你對“微信小程序引入模板的方法”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。