发送Post请求,this.$http.pst

1.this.$http.pst() 中接收三个参数

    1.1 第一个参数:要请求的url地址;

    1.2 第二个参数: 要求交个服务器的数据,要以对象形式提交个服务器 { name: this.name }

    1.3 第三个参数:是一个配置对象,要以哪种表单数据类型提交过去,  { emulateJSON:true },表示以

普通表达格式将数据提交个服务器   application/x -www-form-urlencoded

 

2. 在post方法中,使用 .then 来设置成功的回调函数,如果想要拿到成功的结果,需要调用 result.body

 

例子:

this.$http.post('http://www.baidu.com',{name: this.name},{emulateJSON:true}).then(result=>{

    //成功的回调函数体

})

 

 

Logo

前往低代码交流专区

更多推荐