fetch数据请求
优化
search = async () => {
const { keywordElement: { value: searchName } } = this//连续解构+重命名
//使用fetch发送网络请求 优化
try {
const response = await fetch(`/api/search/users?q=${searchName}`)
const data = await response.json()
console.log(data);
} catch (error) {
console.log('请求出错!');
}
}
fetch数据请求最先出现在Python成神之路。
共有 0 条评论