// pages/newsDetail/newsDtail.js const app = getApp() Page({ /** * 页面的初始数据 */ data: { requestIp: '', articleContentId: '', token: '', articleInfo: {} }, getNewsContent: function () { var self = this wx.request({ url: self.data.requestIp + 'wxminiapp/article/getarticledetailrelease', data: { articleContentId: self.data.articleContentId }, header: { 'token': self.data.token }, success: function (res) { console.log(res) var src = 'img src="' + self.data.requestIp if(res.data.data.content.indexOf('src="') != -1){ res.data.data.content =res.data.data.content.replace(/src="/g, src) } self.setData({ articleInfo: res.data.data }) } }) }, getToken: function () { var self = this wx.getStorage({ key: 'token', success: function (res) { console.log(res) self.setData({ token: res.data }) self.getNewsContent() }, }) }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.setData({ requestIp: app.globalData.requestIp, articleContentId: options.articleContentId }) this.getToken() }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })