标签:fun src 语法 tle 调用 bsp 一段 需要 this
首先我的js里面有这样一段代码
process: function(){ var date = ‘Nov 18 2019‘; },
data: { date: ‘Nov 18 2019‘ },
<text>{{date}}</text>
onLoad: function (options) { var post_content = { date: ‘Nov 18 2019‘, title: ‘正是虾肥蟹壮时‘, post_img: ‘/images/post/crab.png‘, content: ‘菊黄蟹正肥,品尝秋之味。徐志摩把看初花的荻芦和到楼外楼吃蟹,并列为秋天来杭州不能错过到风雅之事;用林妹妹到话讲时“螯封嫩玉双双满‘, view_num: ‘112‘, collect_num: ‘96‘, author_img: ‘/images/avatar/1.png‘ } this.setData(post_content); },
这样设置好之后,页面就可以拿到数据了,setData的作用简单的来说就是拷贝到data里面去。
<view class=‘post-container‘> <view class=‘post-author-date‘> <image src=‘{{author_img}}‘></image> <text>{{date}}</text> </view> <text class=‘post-title‘>{{title}}</text> <image class=‘post-image‘ src=‘{{post_img}}‘></image> <text class=‘post-content‘>{{content}}</text> <view class=‘post-like‘> <image class=‘post-like-image‘ src=‘/images/icon/chat.png‘></image> <text class=‘post-like-font‘>{{collect_num}}</text> <image class=‘post-like-image‘ src=‘/images/icon/view.png‘></image> <text class=‘post-like-font‘>{{view_num}}</text> </view> </view>
标签:fun src 语法 tle 调用 bsp 一段 需要 this
原文地址:https://www.cnblogs.com/wzndkj/p/11143626.html