React服务器端呈现无法正确调用web api

时间:2016-01-06 19:38:10

标签: javascript asp.net reactjs

我知道。糟糕的标题
我正在使用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 thensecond then消息 但是在服务器端,我只能得到first then错误 我是否误用了抓取? 忘记Promise
或者调用Web API不正确?

0 个答案:

没有答案