我无法使用post方法使它满足提取请求的要求,并且获得其他api调用效果很好,这是我的代码:
return fetch(URL_LOCAL + `/addLike`, { method: 'post', body: JSON.stringify({a: 1}) }) .then(response => Promise.all([response, response.json()])) .catch(err => { return Promise.reject(err); })
在获取有关URL_LOCAL的信息之前,我做了一个console.log,它返回http:// localhost:5000。
它给了我这个错误:
Network request failed at XMLHttpRequest.xhr.onerror (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:15825) at XMLHttpRequest.dispatchEvent (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:17902) at XMLHttpRequest.setReadyState (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:17657) at XMLHttpRequest.__didCompleteResponse (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:17484) at blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:17594 at RCTDeviceEventEmitter.emit (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:3480) at MessageQueue.__callFunction (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:2386) at blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:2156 at MessageQueue.__guardSafe (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:2348) at MessageQueue.callFunctionReturnFlushedQueue (blob:http://localhost:8081/459df9ca-c7b8-48bc-9c45-03d2f1e94f1d:2155)
我在使用chrome开发工具的android模拟器上查看日志,并且我使用node和mongodb作为后端,但我在调用的开头放了一个日志,但未触发
编辑:我让它工作,但生产中的api与我在localhost:5000中使用的代码相同,我不知道localhost有什么问题
您可以尝试使用以下代码替换代码:
return fetch(URL_LOCAL + `/addLike`, { method: 'post', body: JSON.stringify({a: 1}) }) .then(response => Promise.resolve(response.json())) .catch(err => { return Promise.reject(err); })