博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序 总结
阅读量:5015 次
发布时间:2019-06-12

本文共 2049 字,大约阅读时间需要 6 分钟。

1.  <!-- 获取值 -->

data: {    message:"hi word",    flag:false}

 

2. <!--列表渲染-->

{
{index}}:{
{item.name}}
data: {    items:[      { name: "商品A" },      { name: "商品B" },      { name: "商品C" },      { name: "商品D" },      { name: "商品E" }    ]}

3. <!--条件渲染-->

条件1
条件2
条件3
data: {    condition:Math.floor(Math.random()*3+1) } 为condition 赋值一个1--3 的整数,   Math.random()*3 获取0--3的浮点随机数,  Math.floor 浮点数变整数

4. <!--模板 import 引用-->  只引用 template 模板中的内容

 
hello,word

5. <!--模板 include 引用-->   只引用 template 模板的内容

hello,word view

6. css 引用

hello word
/*hello.wxss*/ @import "./assets.wxss";.container{
color: red;}
/*assets.wxss*/ .container{
border:1px solid #000;}

7. 内联样式

hello word2
/*hello.js*/ data: {    colorValue:"red"  },

8.  wxs 内部使用

module.exports = { message:'Hello, world!' }
{
{m1.message}}

9. 引用外部 wxs 文件

{
{m2.message}}
module.exports = require("./m1.wxs")
module.exports = { message:'hello world'}

 10. view 组件  参考微信小程序开发文档(微信官方网站)

view 组件
.view-parent-container{
width:300rpx; height:300rpx; background: yellowgreen;}.hover-parent-container{
background: #fff;}.view-container{
width:200rpx; height:200rpx; background: chocolate; color:#fff; text-align: center; line-height: 200rpx;}.hover-container{
background: red;}
View Code

 

 

转载于:https://www.cnblogs.com/redhat0019/p/9602904.html

你可能感兴趣的文章
《学习之道》第十章学习方法29还记得散步的好处嘛
查看>>
Git常用命令总结
查看>>
iOS获取设备IP地址
查看>>
JavaSE| String常用方法
查看>>
NRF51822配对绑定要点
查看>>
C语言博客作业—数据类型
查看>>
14.精益敏捷项目管理——认识精益笔记
查看>>
从0开始实现STM32L4XX输出50Hz方波
查看>>
caffe mnist LeNet 参数详细介绍
查看>>
CocoaPods建立私有仓库
查看>>
HIVE中的order by操作
查看>>
Centos下新建用户及修改用户目录
查看>>
iOS开发IPhone以及iPad尺寸汇总
查看>>
Spring Boot RestTemplate文件上传
查看>>
myBatis自动生成mapping,dao和model
查看>>
Android Serivce 高级篇AIDL讲解
查看>>
SpringBoot学习笔记(2):引入Spring Security
查看>>
linq to entity DistinctBy && DefaultIfEmpty
查看>>
图片加水印 PDF取缩略图
查看>>
bzoj 4180: 字符串计数
查看>>