前端获取无参数后端字符串:使用Fetch API
如果后端方法中没有参数,前端需要获取后端返回的字符串,可以考虑使用fetch API进行网络请求。
示例代码如下:
fetch('/api/endpoint')
.then(response => response.text())
.then(data => {
// 处理后端返回的字符串
console.log(data);
})
.catch(error => {
// 处理错误
console.error(error);
});
上述代码通过fetch函数发送GET请求到'/api/endpoint'接口,并使用.then()方法处理后端返回的响应。.then(response => response.text())将响应转换为文本格式,然后可以通过.then(data => { ... })处理后端返回的字符串数据。如果发生错误,可以通过.catch(error => { ... })进行错误处理。
请注意,上述代码仅为示例,需要根据实际情况进行调整,包括替换'/api/endpoint'为实际的后端接口地址。
原文地址: https://www.cveoy.top/t/topic/qxcT 著作权归作者所有。请勿转载和采集!