axios和fetch

版权声明:非经本人同意,请勿转载。 https://blog.csdn.net/QQ_Empire/article/details/81915574

 vue中axios用法

<script src="https://cdn.bootcss.com/axios/0.18.0/axios.min.js"></script>

axios({
		method:'get',
		url:'data.json'
	})
	.then(function(data){
		console.log(data.data)
	})
	.catch(function(){
					
	})

}

 fetch用法

<script src="https://cdn.bootcss.com/vue-resource/1.5.1/vue-resource.min.js"></script>

fetch('data.json')
   .then(function(data){
	    return data.json()
	})
   .then(function(data){
		console.log(data)

     })

猜你喜欢

转载自blog.csdn.net/QQ_Empire/article/details/81915574