基本语法
必须引入一个库:vue-resource nofollow" target="_blank" href="https://github.com/pagekit/vue-resource/tree/master/docs">github地址
// 在一个Vue实例内使用$http
this.$http.get('/someUrl',errorCallback);
this.$http.post('/someUrl',errorCallback);
this.$http.get('/someUrl',errorCallback);
this.$http.post('/someUrl',errorCallback);
vue-resource的请求API是按照REST风格设计的,它提供了7种请求API:
get(url,[options])
head(url,[options])
delete(url,[options])
jsonp(url,[options])
post(url,[options])
put(url,[options])
patch(url,[options])
Options
Type | Description |
---|---|
1. 向文本发出get请求
准备一个1.txt 的文本数据,时面的内容是:welcomet to vue!!!