本篇文章给大家带来的内容是关于url传递参数时如何写变量(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
<navigator url="../../pages/newsDetail/newsDetail?id={{news.id}}"> <view class="list-item"> <view class="little-item"> <view class="left-box"> <image src="{{news.thumb[0]}}"></image> </view> <view class="right-box"> <view class="title">{{news.title}}</view> <view class="info"> <view class="author-info"> <view class="author-avatar"> <image src="{{news.pubInfo.avatarUrl}}"></image> </view> <view class="author-other"> <view>{{news.authorName}}</view> <!-- <view>{{news.pubInfo.introduction}}</view> --> </view> </view> <view>{{news.like}}赞 {{news.createAt}}</view> </view> </view> </view> </view> </navigator>
直接看第一行,直接在双引号里写静态部分,用双大括号绑定变量即可。
相关推荐:
以上是url传递参数时如何写变量(代码)的详细内容。更多信息请关注PHP中文网其他相关文章!