标签:log OLE 默认 response get请求 二进制 text console code
Fetch API 提供了一个 JavaScript接口,用于访问和操纵HTTP管道的部分,例如请求和响应。它还提供了一个全局 fetch()方法,该方法提供了一种简单,合理的方式来跨网络异步获取资源
//fetch( url, config ).then().then().catch()
methods: {
get () {
fetch(`${ BASE_URL }/get.php?a=1&b=2`)//get请求参数是连接在url上
.then( data => data.text() )
.then( res => {
this.num = res
})
.catch( err => console.log( err ))
},
post () {
/*
1. post请求参数如何携带
*/
fetch(`${ BASE_URL }/post.php`,{
method: ‘POST‘,
headers: new Headers({
‘Content-Type‘: ‘application/x-www-form-urlencoded‘ // 指定提交方式为表单提交
}),
body: new URLSearchParams([["a", 1],["b", 2]]).toString()
}).then( data => data.text() )
.then( res => {
this.sum = res
})
.catch( err => console.log( err ))
},
getMovies () {
/* 第一个then是为数据格式化,可以格式化的数据类型有: json text blob[ 二进制 ]
第二个then才是得到的数据
*/
fetch(‘./mock/movie.json‘)
.then( data => data.json() )
.then( res => {
console.log("getMovies -> res", res)
this.movies = res.movieList
})
}
}
标签:log OLE 默认 response get请求 二进制 text console code
原文地址:https://www.cnblogs.com/zengfanjie/p/11722855.html