TexttextKomponentenbeschreibung:
Text ist der Text, der im WeChat-Applet angezeigt wird.
Das Folgende ist der WXML-Code:
[XML] Nur-Text-Ansicht Kopieren Code
<view > <text>我是文本组件</text> </view> <text>{{text}}</text>
Das Folgende ist der JS-Code:
[JavaScript] Nur-Text-Ansicht Code kopieren
Page({ /** * 初始化数据 */ data:{ text:"我是在js文件中绑定的文本" }, onLoad:function(options){ // 页面初始化 options为页面跳转所带来的参数 }, onReady:function(){ // 页面渲染完成 }, onShow:function(){ // 页面显示 }, onHide:function(){ // 页面隐藏 }, onUnload:function(){ // 页面关闭 } })
Texttexte Hauptattribute:
Attribut
属性 |
描述 |
font-size | 字体大小 |
color | 字体颜色 |
font-style | 字体样式 |
margin-top | 字体上边距 |
margin-bottom | 字体下边距 |
Beschreibung
Das obige ist der detaillierte Inhalt vonInterpretation und Analyse der WeChat-Applet-Komponenten: 5. Text. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!