织梦百度小措施获取文章内容接口

接口url:https://你的网站/api/index.php?action=show[&id=10]

接口参数:

织梦百度小措施获取文章内容接口

(此图片来历于网络,如有侵权,请接洽删除! )

措施代码

swan.request({ url: app.globalData.api + "action=show", data: { typeid: that.data.typeid, id: that.data.id, relation: 1,//开启挪用相关推荐 aid: app.globalData.aid }, method: 'POST', header: { 'content-type': 'application/x-www-form-urlencoded', 'x-appsecret': app.globalData.appsecret }, success: function (res) { var content = res.data.data; ...... } })  

说明:

(1)该页面引入了require('../../utils/util.js'),里边封装的有对时间的处理惩罚,因为api返回的是时间戳,需要处理惩罚

content.relations[i].pubdate = util.formatTime(content.relations[i].pubdate, 'Y-M-D');  

(2)由于小措施不支持直接的html标签,所以引入bdparse插件,详细参考demo。

(3)relation默认封锁,需要修改代码来开启,参考demo

(4)字段中假如有数组,需要举办非凡处理惩罚,代码实例:

//判定是否有组图自动判定 if (content.pictureurls){ content.pictureurls = JSON.parse(content.pictureurls) }  

(5)相关内容推荐,swan页面做了判定,假如没有内容默认不显示,而相关评价却没加,本身按照需要修改。

(6)接口返回的数据包括文章的上一篇和下一篇,挪用代码:

that.setData({ pre: content.preNext.pre, next: content.preNext.next, })  

前端:

<view class="nextpage mt10" bindtap="nextpage" data-id="{{pre.id}}">上一篇:{{pre.title}}</view> <view class="nextpage" bindtap="nextpage" data-id="{{next.id}}" >下一篇:{{next.title}}</view>  

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdpdd.html