地址:http://jsonplaceholder.typicode.com/
post接口參考寫法
例如post提交數(shù)據(jù)
this.$http.post(
'http://jsonplaceholder.typicode.com/post',
{
'title':'博客標(biāo)題',
'body':'博客內(nèi)容',
'userId':'1', //這里的內(nèi)容參考第二張圖
}).then(data=>{
console.log(data)
})
get接口參考寫法
例如条篷,get方法拿到上一條提交的數(shù)據(jù)
this.$http.get('http://jsonplaceholder.typicode.com/post'').then(res=>{
console.log(res)
})