运用Express开辟小说API接口效劳1.0(三)
线上接见地点https://api.langpz.com/
之前发明追书神器API详情页居然没有下一章和上一章的返回值,只能本身着手封装一下。
app.js 增添毛病处理
// catch 404 and forward to error handler
app.use(function (req, res, next) {
const err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
这些代码放到module.exports = app; 上面就能够了。
列表页增添返回ID
找到routes/chapter.js 29行替代
res.send(JSON.stringify({ "flag": 1,"id": body._id, "chapters": body.chapters, "msg": "OK" }));
详情页增添上一章和下一章的返回值
let express = require('express');
let request = require('request');
let common = require('../common/common.json'); // 援用大众文件
let router = express.Router();
/**
猎取小说文章内容
返回小说文章内容
param link {String} 是小说文章列表接口 chapters[0].link
http://chapter2.zhuishushenqi.com/chapter/${link}
*/
router.get('/', function (req, res, next) {
if (!req.query.link) {
res.send(JSON.stringify({ "flag": 0, "msg": "请传入link..." }));
}
// req.query.link 编码转义
let link = encodeURIComponent(req.query.link);
request.get(`${common.CHAPTER}/chapter/${link}`, function (err, response, body) {
if (err) {
res.send(JSON.stringify({ "flag": 0, "msg": "要求出错了..." }));
}
// 剖析返回的数据
body = JSON.parse(body);
if (body.ok){
// 再次要求列表页猎取上一页和下一页
if(req.query.id){
// req.query.id 编码转义
let id = encodeURIComponent(req.query.id);
let n = parseInt(req.query.n);
if (isNaN(n)){
n = 0;
}
request.get(`${common.API}/atoc/${id}?view=chapters`, function (err, response, body2) {
if (err) {
res.send(JSON.stringify({ "flag": 0, "msg": "要求出错了..." }));
}
if (body2 == "wrong param"){
res.send(JSON.stringify({ "flag": 0, "msg": "传入毛病的ID..." }));
}else{
// 剖析返回的数据
body2 = JSON.parse(body2);
// 搜检页码是不是凌驾小说的章节数
if(n > body2.chapters.length - 1){
res.send(JSON.stringify({ "flag": 0, "msg": "传入的页码过大" }));
}else{
// 如果有上一页或许下一页就返回link不然返回false
let prev,next;
body2.chapters[n - 1] ? prev = body2.chapters[n - 1].link : prev = false;
body2.chapters[n + 1] ? next = body2.chapters[n + 1].link : next = false;
if (body2.chapters.length > 0) {
res.send(JSON.stringify({ "flag": 1,"id": id, "chapter": body.chapter, "prev": prev,"next": next, "msg": "OK" }));
}
}
}
});
}else{
res.send(JSON.stringify({ "flag": 1, "chapter": body.chapter, "msg": "OK" }));
}
}else{
res.send(JSON.stringify({ "flag": 0, "msg": "传入link有毛病" }));
}
});
});
module.exports = router;
接见http://localhost:3000/article?link=http://www.69shu.com/txt/1463…
新增n和id参数。
n 代表是第几页。
id 是书本ID。