dom
<ul>
<li v-for="item in items">
{{item.name}}
</li>
</ul>
ajax
$.ajax({
url:"data/book.json",
dataType:"json",
method:"Get",
data:{数据参数}
success:(data)=>{
console.log(data);
},
error:(xhr,textStatus,error)=>{
console.log(error)
}
})
axios
axios.get('data/book.json',{params:{参数}})
.then(function (data) {
console.log(response);
},function(err){
console.log(err);
})
.catch(function (error) {
console.log(error);
})