微信小程序之文本输出
Posted luosong3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序之文本输出相关的知识,希望对你有一定的参考价值。
和轮播图相似首先建立一个wtml
<view class=‘‘> <text>文本输出:</text> <block wx:for="{{custom_data}}" wx:key="*this"> <text>{{item.notification}}</text> </block>
</view>
接下来是js,
wx.request({ // 获取后台输入的文本 url: , data: { custom_server:, }, success: function (res) { let arr=res.data; var data=arr.data; that.setData({ custom_data: data, }); } })
后台phpSQL查找文本内容
$config=M(‘info‘)->find(); $arr[‘notification‘]=$config[‘notification‘];
前台html的输入略过,notification 是输入文本
以上是关于微信小程序之文本输出的主要内容,如果未能解决你的问题,请参考以下文章