我知道。糟糕的标题
我正在使用Asp.Net ReactServices进行React
服务器端呈现。
我在我的反应组件componentWillMount
中有这部分代码:
fetch( 'http://localhost:5000/api/Index/GetData',
{
method: 'get'
} )
.then( (res) => {
console.log(res.status); // 200
console.log('first then');
return res.json();
} )
.then( (res) => {
console.log( 'second then' );
return res;
} )
.catch( err => {
console.log( err )
} );
在浏览器中,我会收到first then
和second then
消息
但是在服务器端,我只能得到first then
错误
我是否误用了抓取?
忘记Promise
?
或者调用Web API不正确?