這篇文章帶給大家的內容是關於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中文網其他相關文章!