Blogger Information
Blog 25
fans 0
comment 0
visits 42137
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
微信小程序字符串模板 ${string}
程先生的博客
Original
3906 people have browsed it

在微信小程序中可以使用ES6新特性字符串模板

【微信小程序+ES6新特性应用】字符串模板:美元符号$+大括号{}变量的写法

1、字符串模板简介

 

ES6新特性中的字符串模板允许使用英文字符抑音符号`(提示:这里我们不能将其理解为单引号)来创建字符串,并且在该字符串中可以包含都【美元符号+大括号】包裹的变量

格式:console.log(`ES6新特性:${name}`)

说明:格式中的name为变量名

 

2、关键代码

index.html

<button>点击我控制台输出字符串模块数据</button>

index.js

Page({  
 data:{  
   // text:"这是一个页面"  
   stringTemplateTxt:''  
 },  
 stringTemplate:function(){  
   var stringTemplateTxt="字符串模板数据"//定义一个变量并初始化值      
   console.log(`我是${stringTemplateTxt}`)//将stringTemplateTxt变量的值输出到控制台    }  
})  



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post