fetch
程序员文章站
2022-04-25 19:30:22
...
fetch是类似AJAX的交互方式之一
//GET
fetch(`http://localhost:80?user=${user}&pass=${pass}`, {
method: "GET"
}).then((res) => {
res.json(() => {
}).then((res) => {
//成功代码
}).catch(() => {
//失败代码
})
});
//POST
fetch(`http://localhost:80`, {
method: "POST",
headers:{
"Content-Type" : "application/x-www-form-urlencoded"
},
body:`user=${user}&pass=${pass}`
}).then((res) => {
res.json(() => {
}).then((res) => {
//成功代码
}).catch(() => {
//失败代码
})
});
推荐阅读
-
PDO fetch的问题
-
深入mysql_fetch_row()与mysql_fetch_array()的区别详解
-
mysql_fetch_array可以这样写吗?
-
JavaScript如何使用fetch来完成异步请求的实例介绍
-
PHP使用mysql_fetch_row查询获得数据行列表的方法,phpmysql_fetch_row_PHP教程
-
PHP使用mysql_fetch_object从查询结果中获取对象集的方法_PHP教程
-
深入理解用mysql_fetch_row()以数组的形式返回查询结果_php技巧
-
undefined function db_fetch_array(),该怎么解决
-
使用 async 和 await,实现 fetch 同步请求
-
react中支持fetch吗