标签:request user class catch osd head function 属性 ber
执行 GET
请求
// 为给定 ID 的 user 创建请求
axios.get(‘/user?ID=12345‘)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
// 可选地,上面的请求可以这样做
axios.get(‘/user‘, {
params: {
ID: 12345
}
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
执行 POST
请求
axios.post(‘/user‘, {
firstName: ‘Fred‘,
lastName: ‘Flintstone‘
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
可以通过向 axios
传递相关配置来创建请求
// 发送 POST 请求
axios({
method: ‘post‘,
url: ‘/user/12345‘,
data: {
firstName: ‘Fred‘,
lastName: ‘Flintstone‘
}
});
// 发送 GET 请求(默认的方法)
axios(‘/user/12345‘);
为方便起见,为所有支持的请求方法提供了别名
在使用别名方法时, url
、method
、data
这些属性都不必在配置中指定。
标签:request user class catch osd head function 属性 ber
原文地址:http://www.cnblogs.com/zhaodagang8/p/7822252.html