微信小程序视图template模板引用


WXML 提供两种文件引用方式import和include。

include可以将目标文件除了的整个代码引入,相当于是拷贝到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>
        <!-- 标题内容 -->
         <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;
}

不要老是责备队友太坑,要反思一下你为什么会匹配到这么坑的队友?

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值