0%

微信小程序学习之text组件

一、实现效果

二、代码部分

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--学习text组件-->
<view class="title">学习text组件</view>
<view class="student">2016/11/29 vsiryxm@qq.com</view>
<view>
<text>\n
1、支持转义符\,如\\n为换行。
2、组件内只支持 text 嵌套。
3、除了文本节点以外的其他节点都无法长按选中。
\n\n</text>
</view>
<view class="section">
<text>
<text>这是第一行</text>
这是第二行\n
这是第三行\n
</text>
</view>