Egg.js学习与实战系列 · jsonp接口的封装使用


字数:599 阅读时长:2分钟 阅读:85

jsonp作为前端跨域的一种解决方案,不用像配置nginx那样做一系列的反向代理转发,返回的数据结构也比较严谨,使用起来简单,方便。本篇就讲讲jsonp接口在Egg框架中的封装与使用。

Egg+Jsonp

下载 egg-jsonp 插件

egg-jsonp 是用于 jsonp 支持的 Egg 插件。

1
npm i -S egg-jsonp 

配置

  • config/plugin.js
1
2
3
4
5
6
// {app_root}/config/plugin.js

exports.jsonp = {
enable: true,
package: 'egg-jsonp',
};
  • config/config.default.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = appInfo => {
/**
* built-in config
* @type {Egg.EggAppConfig}
**/
const config = exports = {};

config.jsonp = {
limit: 100,
// callback: [ '_callback', 'callback' ],
// csrf: true,
// whiteList: [
// 'localhost:4000/',
// '127.0.0.1:4000/',
// ],
};
return {
...config,
}
}

配置解释:

  • callback:jsonp回调方法key值,默认为 [ '_callback', 'callback' ]
  • csrf:是否启用 csrf 防御检查。默认为 false
  • limit:回调方法名的最大长度,默认为 50
  • whiteList:请求referrer的白名单。类型可以是String、Array、RegExp。
    * 字符串:{whiteList : '.test.com'}
    * 正则:{whiteList : / ^ https?: \/ \/ test.com \/ /},如果 `whiteList` 的类型是正则,`referrer` 必须匹配 `whiteList`,注意 `first^`和 `last /`。
    * 数组:{whiteList : [  '.foo.com' ,  '.bar.com'  ]}
    

controller

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// app/controller/jsonp/index.js
'use strict';

const Controller = require('egg').Controller;

class JsonpController extends Controller {

async list() {
const { ctx } = this;
ctx.body = [
{
id: 1,
name: '天問',
},
{
id: 2,
name: '天问',
},
{
id: 3,
name: 'Tiven',
},
];
}

}

module.exports = JsonpController;

router

1
2
3
4
5
6
7
8
9
// app/router.js

module.exports = app => {
const { router, controller } = app;
const jsonp = app.jsonp();

router.get('/api/v1/jsonp/list', jsonp, controller.jsonp.index.list);
};

前端页面调用

1
2
3
4
5
6
7
8
9
function getList(res) {
if (!res) return
// jsonp接口返回的数据
// do ...
console.log(res)
}
let script = document.createElement('script')
script.src = `http://127.0.0.1:7001/api/v1/jsonp/list?callback=getList&v=${Date.now()}`
document.body.appendChild(script)
  • 打开控制台的network可以查看jsonp返回的数据结构:
1
/**/ typeof getList === 'function' && getList([{ "id": 1, "name": '天問'}, { "id": 2,"name": '天问'},{"id": 3, "name": 'Tiven'}]);

参考文档:


《Egg.js学习与实战》系列


欢迎访问:个人博客地址

本文作者: Tiven
发布时间: 2021-10-17
最后更新: 2023-07-17
本文标题: Egg.js学习与实战系列 · jsonp接口的封装使用
本文链接: https://www.tiven.cn/p/e2d64b18/
版权声明: 本作品采用 CC BY-NC-SA 4.0 许可协议进行许可。转载请注明出处!
欢迎留言,提问 ^_^
个人邮箱: tw.email@qq.com
notification icon
博客有更新,将会发送通知给您!