You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
export default {
|
|
// 支持值为 Object 和 Array
|
|
'GET /api/users': { users: [1, 2] },
|
|
|
|
// GET 可忽略
|
|
'/api/users/1': { id: 1 },
|
|
|
|
// 支持自定义函数,API 参考 express@4
|
|
'POST /api/users/create': (req, res) => {
|
|
// 添加跨域请求头
|
|
res.setHeader('Access-Control-Allow-Origin', '*');
|
|
res.end('ok');
|
|
},
|
|
}
|