使用Express開發小說API介面服務1.0(三)
線上訪問地址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/4861037&n=2648&id=577b6c81ccb7bf00499d036c 新增n和id引數。 n 代表是第幾頁。 id 是書籍ID。