文章目录
一、axios
1.安装
// 安装
npm install axios --save
2.使用
// 1.引入
import axios from 'axios';
getData = () => {
let api = 'http://a.itying.com/api/productlist';
axios.get(api)
.then((res) => {
console.log(res);
})
.catch((error) => {
console.log(error);
})
}
二、fetch-jsonp
1.安装
npm install fetch-jsonp --save
2.使用
// 1.引入
import fetchJsonp from 'fetch-jsonp'
getData = () => {
let api='http://www.phonegap100.com/appapi.php?a=getPortalList&catid=20';
// 2.使用
fetchJsonp(api)
.then(function (response) {
return response.json()
}).then(function (json) {
console.log('parsed json', json)
}).catch(function (ex) {
console.log('parsing failed', ex)
})
}