node.js - 用express开发的接口,ajax请求自定义设置headers的时候404
高洛峰
高洛峰 2017-04-17 16:28:17
0
0
454

express层

//设置跨域访问
app.all('*', function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*"); //*表示允许的域名地址,本地则为'http://localhost'
    res.header("Access-Control-Allow-Headers", "*");
    res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
    res.header("X-Powered-By", ' 3.2.1')
    res.header("Content-Type", "application/json;charset=utf-8");
    next();
});

ajax层:

fetch(url, {
    method,
    mode: 'cors',
    headers: {
        'Test': '123456'
    }
})
.then(response => response.json())
.catch(error => console.log(error))

设置Test接口404,删除headers可以,设置Accept也可以

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回覆(0)
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板