這篇文章將為大家詳細(xì)講解有關(guān)微信小程序如何引用視圖template模板,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
樺川網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)建站自2013年起到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
微信小程序視圖template模板引用的實(shí)例詳解
WXML 提供兩種文件引用方式import和include。
include可以將目標(biāo)文件除了的整個(gè)代碼引入,相當(dāng)于是拷貝到include位置
temlate.wxml
<template name="tmp_data" > <view class="content"> <!-- 頭像 --> <view class="author-date"> <image src="{{item.header_url}}" class="author"></image> <text class="date">{{item.date}}{{idx}}</text> </view> <!-- 標(biāo)題內(nèi)容 --> <text class="title">{{item.title}}</text> <image class="image" src="{{item.image_url}}"></image> <text class="article-content">{{item.content}}</text> <view > <image class="article-images" src="../../images/icon/chat.png"></image> <text class="article-text">66</text> <image class="article-images" src="../../images/icon/view.png"></image> <text class="article-text">88</text> </view> </view> </template>
redirect.wxml引用
<import src="template/template.wxml" />
template.js
var content_for = [ { date: "2020年 10月 9日 ", title: "那年夏天", header_url: "/images/3.png", image_url: "/images/6.jpg", content: "天不言自高,地不言自厚,奇跡,是不會(huì)在容易的道路上綻放的。人生沒有如果,只有后果和結(jié)果,過去的不再回來,回來的不再完美。", }, { date: "2022年 10月 9日 ", title: "夏天", header_url: "/images/3.png", image_url: "/images/8.jpg", content: "人生沒有如果,只有后果和結(jié)果,過去的不再回來,回來的不再完美。", }, ] //輸出出口 module.exports={ templates: content_for }
redirect.js引用
var content_data=require('../../template/template.js') // pages/redirect/redirect.js Page({ /** * 頁(yè)面的初始數(shù)據(jù) */ data: { }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載 */ onLoad: function (options) { this.setData({ key: content_data.templates }); } });
wxml
<block wx:for="{{key}}" wx:for-item="item" wx:for-index="idx"> <!-- is就是模板名字name值 --> <template is="tmp_data" data="{{item}}" /> </block>
template.wxss文件
.title{ font-size: 34rpx; font-weight: 600; color:#333; margin-bottom: 20px; }
redirect.wxss文件引用上面樣式
@import "template/template.wxss" //使用import定義 swiper{ width:100%; height:500rpx; } swiper image{ width:100%; height:500rpx; }
關(guān)于“微信小程序如何引用視圖template模板”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
網(wǎng)頁(yè)名稱:微信小程序如何引用視圖template模板
文章位置:http://jinyejixie.com/article48/pgihhp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、網(wǎng)站排名、面包屑導(dǎo)航、域名注冊(cè)、網(wǎng)站收錄、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)