我有这个问题: 一个API(Blynk.cc)具有2个输出可能性:TRUE或FALSE(简单文本,无JSON) 访问https:// ip:port / APIKey / isHardwareConnected时,我得到TRUE为FALSE 当我尝试通过以下方法获得此结果时:response = await fetch(url) 打印的响应为[object Response]不是TRUE或FALSE。 你能帮助我吗 ? 谢谢
答案 0 :(得分:1)
如果他们是一个例子,我会更好地帮助您,但是您可以尝试一下。 您需要在响应中运行.text()函数。
fetch('http://example.com/movies.json')
.then(response => response.text())
.then(data => console.log(data));
您的答案
const energielive = 'http://cristianistrate.go.ro:8080/oF3rMGDvjOrWLppZfgS9pqgulWyforSn/isHardwareConnected';
let response = await fetch(energielive).then(response => response.text());
console.log(response);