위 챗 애플 릿 보기 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;
}
본 사이트 의 애플 릿 에 관 한 글 이 아직 많 습 니 다.여러분 이 검색 하여 찾 아 보 실 수 있 기 를 바 랍 니 다.본 고 를 통 해 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
애플 릿 이미지 새로 고침, nginx 재 작성 url 제거 인자이전에 nginx 로 이미지 서버 를 만 들 었 는데 전단 에 작은 프로그램 을 사 용 했 습 니 다. 작은 프로그램 이 출시 된 후에 그림 이 새로 고침 되 지 않 는 것 을 발 견 했 습 니 다. 조사 한 결과 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.