這裏是問題,curl
與正確的響應 curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET http://localhost:8080/rbuilder HTTP/1.1 200 OK Content-Length: 1067 {"rScriptName":"CollegePlan"," .............}
捲曲回來與正確的響應,瀏覽器正在恢復空
回來然而,使用ReactJS,瀏覽器是回來空。
componentWillMount() { fetch('http://localhost:8080/rbuilder', { method: 'GET', mode: 'no-cors', processData: false, contentType: "application/json", cache: false, accept: "application/json" }).then((res) => { console.log('GET response', res); }, (err) => { console.log(err); }); }
不過,我已經注意到,在「網絡」選項卡,是rbuilder
在時間軸中出現兩次,第二個正確的「響應」。 我的抓取有什麼問題?
你試過 '//本地主機:8080/rbuilder',而不是完整的URL。 –
@MariaSaavedra 我收到回覆...... {「rScriptName」:「CollegePlan」,「.............} – newprint
當你說它變空時,你的意思是「res」是未定義的? – QoP