This article mainly introduces the way in which WeChat applet implements data transfer to nested template templates. It summarizes and analyzes the definition, calling, parameter transfer and related usage skills of nested template templates in WeChat applet in the form of examples. What is needed Friends can refer to
The example in this article summarizes the way in which WeChat applet implements data transfer to nested templates. Share it with everyone for your reference, the details are as follows:
1. When the data called by the template template is in a single form:
indexTemplate template:
<import src="../lookAndCollect-template/lookAndCollect-template.wxml" /> <template name="indexTemplate"> <view class="user-info"> <image class="avatar" src="{{avatar}}"></image> <text class="name">{{name}}</text> <text class="date">{{date}}</text> </view> <view class="news"> <text class="news-title">{{title}}</text> <image class="news-img" src="{{newsImg}}"></image> <text class="news-content">{{content}}</text> </view> <template is="reviewAndCollect" data="{{review,look}}"></template> </template>
lookAndCollect template:
<template name="lookAndCollect-template"> <view class="lookAndCollect-template"> <view class="lookAndCollect-template-review"> <image src="/smallApp/images/icon/view.png"></image> <text>{{look}}</text> </view> <view class="lookAndCollect-template-look"> <image src="/smallApp/images/icon/chat.png"></image> <text>{{collect}}</text> </view> </view> </template>
The reference of indexTemplate template in index.wxml:
<block wx:for="{{newsData}}" wx:for-item="newsItem"> <view class="item"> <template is="indexTemplate" data="{{...newsItem}}" /> </view> </block>
index.wxml corresponding index.js writing method:
var newsDataList = require("../index-data.js"); Page({ data: { }, onLoad: function (option) { this.setData({ newsData: newsDataList.dataList }); } })
Use a single form of data in the template:
var news_data = [ { listId: "0", avatar: "/smallApp/images/avatar/1.png", name: "我是大猫猫", date: "16分钟前", title: "搞事情?法国招聘新特工 会汉语成必备条件", newsImg: "/smallApp/images/post/crab.png", content: "是的,你没看错,据法国《费加罗报》报道,法国境外安全总局(DGSE)欲在2019年前招募600名新特工,而且新的特工必须年轻、有高等文凭,会多国语言,并且熟悉电脑与互联网。", review: "0", look: "30" }, { listId: "1", avatar: "/smallApp/images/avatar/2.png", name: "风口上的猪", date: "1天前", title: "顺丰控股上市次日盘中涨停 离首富差4个涨停", newsImg: "/smallApp/images/post/bl.png", content: "根据之前借壳方鼎泰新材发布的公告,该公司定增完成后,第一大股东将变更为深圳明德控股发展有限公司(简称“明德控股”),持股比例为64.58%,后4名分别为宁波顺达丰润投资管理合伙企业(有限合伙)…", review: "100", look: "380" } ]; module.exports = { dataList: news_data }
If you need to pass in multiple data in a nested template, you can separate each data with a comma.
2. The calling method when nested template calls include object objects:
The data review and look used in the template are in the form of objects When presenting:
var news_data = [ { listId: "0", avatar: "/smallApp/images/avatar/1.png", name: "我是大猫猫", date: "16分钟前", title: "搞事情?法国招聘新特工 会汉语成必备条件", newsImg: "/smallApp/images/post/crab.png", content: "是的,你没看错,据法国《费加罗报》报道,法国境外安全总局(DGSE)欲在2019年前招募600名新特工,而且新的特工必须年轻、有高等文凭,会多国语言,并且熟悉电脑与互联网。", reviewAndCollect { review: "0", look: "30" } }, { listId: "1", avatar: "/smallApp/images/avatar/2.png", name: "风口上的猪", date: "1天前", title: "顺丰控股上市次日盘中涨停 离首富差4个涨停", newsImg: "/smallApp/images/post/bl.png", content: "根据之前借壳方鼎泰新材发布的公告,该公司定增完成后,第一大股东将变更为深圳明德控股发展有限公司(简称“明德控股”),持股比例为64.58%,后4名分别为宁波顺达丰润投资管理合伙企业(有限合伙)…", reviewAndCollect { review: "120", look: "300" } } ]; module.exports = { dataList: news_data }
indexTemplate template
<import src="../lookAndCollect-template/lookAndCollect-template.wxml" /> <template name="indexTemplate"> <view class="user-info"> <image class="avatar" src="{{avatar}}"></image> <text class="name">{{name}}</text> <text class="date">{{date}}</text> </view> <view class="news"> <text class="news-title">{{title}}</text> <image class="news-img" src="{{newsImg}}"></image> <text class="news-content">{{content}}</text> </view> <template is="reviewAndCollect" data="{{reviewAndCollect}}"></template> </template>
lookAndCollect template:
<template name="lookAndCollect-template"> <view class="lookAndCollect-template"> <view class="lookAndCollect-template-review"> <image src="/smallApp/images/icon/view.png"></image> <text>{{reviewAndCollect.look}}</text> </view> <view class="lookAndCollect-template-look"> <image src="/smallApp/images/icon/chat.png"></image> <text>{{reviewAndCollect.collect}}</text> </view> </view> </template>
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to implement the web version of the calculator in JS
How to implement the parabolic trajectory of the ball using JS
How to implement cookie cross-domain in axios
How to implement binary tree traversal using JavaScript
In JavaScript How to achieve elastic effect
The above is the detailed content of How to pass data to template in WeChat applet. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于基础架构原理的相关内容,其中包括了宿主环境、执行环境、小程序整体架构、运行机制、更新机制、数据通信机制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于云服务的配置详解,包括了创建使用云开发项目、搭建云环境、测试云服务等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了关于富文本编辑器的实战示例,包括了创建发布页面、实现基本布局、实现编辑区操作栏的功能等内容,下面一起来看一下,希望对大家有帮助。

西安坐地铁用的小程序为“乘车码”。使用方法:1、打开手机微信客户端,点击“发现”中的“小程序”;2、在搜索栏中输入“乘车码”进行搜索;3、直接定位城市西安,或者搜索西安,点击“西安地铁乘车码”选项的“去乘车”按钮;4、根据腾讯官方提示进行授权,开通“乘车码”业务即可利用该小程序提供的二维码来支付乘车了。

本篇文章给大家带来了关于微信小程序的相关知识,其中主要介绍了怎么实现小程序授权登录功能的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于微信小程序的相关问题,其中主要介绍了关于开发工具介绍的相关内容,包括了下载开发工具以及编辑器总结等内容,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
