您好,登錄后才能下訂單哦!
這篇文章主要講解了微信小程序文章詳情功能的代碼實(shí)例解析,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
list.js 首先獲取文章的id,因?yàn)槲覀兊臄?shù)據(jù)是假數(shù)據(jù)所以用key值作為文章id
onPostTap: function (event) { var article_id = event.currentTarget.dataset.aid; wx.navigateTo({ url: '../article-detail/detail?aid=' + article_id, }) },
detail.wxml
<!--pages/article-detail/detail.wxml--> <view> <image src="/images/post/sls.jpg" class="detail-img"></image> </view> <view class="avatar"> <image src="/images/avatar/2.png"></image> <text>{{detail.avatar}}</text> <text>發(fā)表于 {{detail.date}}</text> <image src="/images/icon/collection-anti.png"></image> <image src="/images/icon/share.png"></image> </view> <view class="title"> <text>{{detail.title}}</text> </view> <view class="content"> {{detail.content}} </view> <view class="pre-next"> <text class="pre">上一篇:啊啊啊啊啊啊啊</text><text class="next">下一篇:哈哈哈哈哈</text> </view>
detail.wxss
/* pages/article-detail/detail.wxss */ .detail-img { width: 100%; height: 400rpx; } .avatar { overflow: hidden; } .avatar image { float: left; width: 100rpx; height: 100rpx; margin-left: 20rpx; } .avatar image:nth-child(4) { float: right; width: 60rpx; height: 60rpx; margin-right: 20rpx; } .avatar image:nth-child(5) { float: right; width: 60rpx; height: 60rpx; vertical-align: middle; } .avatar text { float: left; font-size: 30rpx; height: 100rpx; line-height: 100rpx; padding-left: 15rpx; } .avatar text:nth-child(3) { font-size: 25rpx; color: gainsboro; } .title { width: 100%; clear: both; } .title text { display: flex; justify-content: center; align-items: center; color: rgb(171, 211, 224); font-size: 50rpx; } .content{ color:#666; letter-spacing: 2rpx; margin-top:20rpx; padding-left:20rpx; padding-right:20rpx; line-height:40rpx; font-size:25rpx; text-indent:50rpx; } .pre-next{ margin-top:20rpx; } .pre{ float:left; margin-left:20rpx; font-size: 25rpx; color:rgb(171, 211, 224); padding-bottom: 20rpx; } .next{ float: right; margin-right:20rpx; font-size: 25rpx; color:rgb(171, 211, 224); padding-bottom: 20rpx; }
detail.js
// pages/article-detail/detail.js var articleData = require("/../../data/article-data.js"); Page({ /** * 頁(yè)面的初始數(shù)據(jù) */ data: { }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載 */ onLoad: function (options) { //獲取文章的id var aid = options.aid; var article = articleData.data[aid]; this.setData({detail:article}); }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面初次渲染完成 */ onReady: function () { }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面顯示 */ onShow: function () { }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面隱藏 */ onHide: function () { }, /** * 生命周期函數(shù)--監(jiān)聽頁(yè)面卸載 */ onUnload: function () { }, /** * 頁(yè)面相關(guān)事件處理函數(shù)--監(jiān)聽用戶下拉動(dòng)作 */ onPullDownRefresh: function () { }, /** * 頁(yè)面上拉觸底事件的處理函數(shù) */ onReachBottom: function () { }, /** * 用戶點(diǎn)擊右上角分享 */ onShareAppMessage: function () { } })
看完上述內(nèi)容,是不是對(duì)微信小程序文章詳情功能的代碼實(shí)例解析有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。