ホームページ > 記事 > WeChat アプレット > WeChat ミニ プログラムにテンプレートを導入する方法
WeChat ミニプログラムにテンプレートを導入する方法:
最初の方法: 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 -->
2 番目の方法: include を使用してインポート
include は、dcdc0fa59b5fea5bdae0d810c3919fcd 35ce109ec7283157c97b1ca8559eba8f を除くターゲット ファイルのコード全体を導入できます。
<!-- 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里的内容 -->
推奨: "小規模プログラム開発チュートリアル "
以上がWeChat ミニ プログラムにテンプレートを導入する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。