我开始学习react-native,并在Android上使用fetch时遇到了一些问题。
try {
let response = await fetch(REQUEST_URL, {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
***parameters***
})
});
let responseJson = await response;
if(responseJson){
// console.log(responseJson);
console.log(responseJson.text());
// console.log(responseJson.json());
}
} catch(error) {
console.error(error);
}
请求已正确发送,但答案未显示在整体中:
(**loads more data before**){"ID":"779","DESCRICAO":"ZXCVB","CLIENTENUMERO":"10133","CLIENTENOME":"Lda 1","TREGISTO":"2015\\/11\\/24 09:34:15","TTERMO":"","SITUACAO":"C","TIPO":"P","NOTIFICACOES":"email","NOTIFI_TAREFA":"","ESFORCOS_TOT":"4","TEMPOGASTO_TOT":"0:01:44","TEMPOGASTO_PES":"0:01:44","PROJECTO":"New Products","USERNAME":"AT","UREGISTO":"S","EMCURSO":"0","TULTIMO":"2015\\/12\\/18 20:37:56","EQUIPA":"","NIVEL":"AVISAX"},{"ID":"783","DESCRICAO":"123","CLIENTENUMERO":"10133","CLIENTENOME":"Lda 1","TREGISTO":"2015\\/11\\/24 09:43:26","TTERMO":"","SITUACAO":"C","TIPO":"P","NOTIFICAC
如您所见,JSON对象不完整。在浏览器中使用其他方法发送相同的请求会正确返回JSON。
我想知道这是fetch或Android的实际问题。
我尝试在fetch中将size和timeout参数设置为0,但它什么也没做。
编辑:也尝试使用同步提取而不是异步,效果相同:
fetch(REQUEST_URL, {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
***params***
})
})
.then((response) => response.text())
.then((responseText) => {
console.log(responseText);
})
.catch((error) => {
console.warn(error);
}
也尝试过:
console.log(responseJson);
和
console.log(responseJson.json());
编辑以进一步澄清:
当使用response.json()时,响应显示为json(如预期的那样),但它仍然不完整。
答案 0 :(得分:1)
编辑::问题与console.log一起限制了它在控制台中显示的字符数。
快速提问:
如果用邮递员点击端点,你能完整地获取json对象吗?很可能是你的服务器/服务正在切断消息。
最后,(我看到你在上面提到了这一点),但我总是使用' json'当我知道这是符号类型时应该关闭响应obj的方法 - 它应该返回一个promise。
fetch(REQUEST_URL, {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
***params***
})
})
//get the response and execute .json
.then((r) => r.json())
//then listen for the json promise
.then((j) => {
console.log(j);
})
.catch((error) => {
console.warn(error);
}
让我知道会发生什么,如果你得到postman(或fiddler compose)的完整回复。