91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序中template模板引用的示例分析

發布時間:2021-06-04 14:18:27 來源:億速云 閱讀:146 作者:小新 欄目:移動開發

這篇文章將為大家詳細講解有關微信小程序中template模板引用的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

微信小程序視圖template模板引用的實例詳解

WXML 提供兩種文件引用方式import和include。

include可以將目標文件除了的整個代碼引入,相當于是拷貝到include位置

微信小程序中template模板引用的示例分析

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>
    <!-- 標題內容 -->
     <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: "天不言自高,地不言自厚,奇跡,是不會在容易的道路上綻放的。人生沒有如果,只有后果和結果,過去的不再回來,回來的不再完美。",
 },
 {
  date: "2022年 10月 9日 ",
  title: "夏天",
  header_url: "/images/3.png",
  image_url: "/images/8.jpg",
  content: "人生沒有如果,只有后果和結果,過去的不再回來,回來的不再完美。",
 },

]
//輸出出口
module.exports={
 templates: content_for
}

redirect.js引用

var content_data=require('../../template/template.js')
// pages/redirect/redirect.js
Page({

 /**
  * 頁面的初始數據
  */
 data: {

 },

 /**
  * 生命周期函數--監聽頁面加載
  */
 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;
}

關于“微信小程序中template模板引用的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

本溪市| 金华市| 福泉市| 徐闻县| 江津市| 甘孜县| 东源县| 清水县| 芮城县| 呼图壁县| 望江县| 华坪县| 六盘水市| 上高县| 石河子市| 阳城县| 兴山县| 乐山市| 绥棱县| 黔西| 民权县| 任丘市| 德州市| 安化县| 烟台市| 共和县| 黔西| 双柏县| 汨罗市| 黄龙县| 木里| 金阳县| 双江| 太白县| 宜良县| 观塘区| 临泽县| 淅川县| 宁安市| 曲麻莱县| 上蔡县|