小編給大家分享一下微信小程序如何實現(xiàn)template模板,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
目前創(chuàng)新互聯(lián)公司已為上千多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、網(wǎng)站托管運營、企業(yè)網(wǎng)站設(shè)計、海門網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
微信小程序template模板使用
前言
微信小程序中提供了template使用,即相同的板塊可以進行代碼互用,如下方的效果圖,就可以用template。
效果圖
一、模板定義
模板最重要的是模板的名稱,即""
以下是實例模板代碼
{{date}} {{title}} {{content}} {{collection}} {{reading}}
wxss文件
.post-container { display: flex; flex-direction: column; margin-top: 20rpx; margin-bottom: 40rpx; background-color: white; border-bottom: 1px solid #ededed; border-top: 1px solid #ededed; padding-bottom: 5px; } .post-author-date { margin: 10rpx 0 20rpx 10rpx; } .post-author { width: 60rpx; height: 60rpx; vertical-align: middle; } .post-date { margin-left: 20rpx; vertical-align: middle; margin-bottom: 5px; font-size: 26rpx; } .post-title { font-size: 34rpx; font-weight: 600; color: #333; margin-bottom: 10px; margin-left: 10px; margin-right: 10px; } .post-image { margin-left: 16px; width: 100%; height: 340rpx; margin: auto 0; margin-bottom: 15rpx; } .post-content { color: #666; font-size: 28rpx; margin-bottom: 20rpx; margin-left: 20rpx; margin-right: 20rpx; letter-spacing: 2rpx; line-height: 40rpx; } .post-like { font-size: 13px; flex-direction: row; line-height: 16px; margin-left: 16px; color: gray; } .post-like-image { height: 16px; width: 16px; margin-right: 8px; vertical-align: middle; } .post-link-text { vertical-align: middle; margin-right: 20px; }
二、模板使用
引入模板文件
使用模板文件 用is 使用 模板定義時的名稱 data里面是循環(huán)里面里面的數(shù)據(jù) 用“...”表示的話,就可以把item里面的數(shù)據(jù)全部平鋪出來,這樣在template里面就不用寫“item.xx”了,直接寫item里面的屬性就可以了 要使用template的程序wxml文件
wxss 文件
@import 'post-item/post-item-template.wxss';
看完了這篇文章,相信你對“微信小程序如何實現(xiàn)template模板”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!