Vue-post和get请求实例

来源:互联网 发布:windows怎么开发苹果 编辑:程序博客网 时间:2024/05/29 14:04

一、用法:第一种

Vue.http.post(url,postData).then(function(data){

if(data.ok){


        }

})

第二种

Vue.http(

method:'POST',

url:

data:

emulateJSON:true

).then(function(data){},function(data){error信息})


三、loaction.pathname返回url的路径

      eg:URL 是: http://example.com:1234/test/test.htm#part2

     返回:/test/test.htm

原创粉丝点击