1
我正在使用下面的代碼從API獲取數據並且工作正常。我有另一個安全的API,它需要用戶名/密碼才能訪問內容,我不確定如何在使用同構提取模塊時傳遞憑證。有人可以幫忙嗎?同構提取(REDUX/nodeJs) - 帶用戶名/密碼的POST請求
我使用這個模塊:https://www.npmjs.com/package/isomorphic-fetch
我需要的用戶名和密碼,通過如下(樣本curl命令)
curl -u admin:hello123 http://test:8765/select?q=*
代碼:
fetch(
url
).then(function (response) {
if (response.status != 200) {
dispatch(setError(response.status + '===>' + response.statusText + '===>' + response.url))
}
return response.json();
}).then(function (json) {
dispatch(setData(json, q))
}).catch(function(err){
});