美文网首页
axios 发送数据

axios 发送数据

作者: _TAPE_ | 来源:发表于2019-09-30 18:18 被阅读0次

 methods:{

            update:function(){

              axios.post('http://localhost/public/index.php/index/Dbxx/upload', {

            title: this.title,        // 参数 firstName

            words: this.words,    // 参数 lastName

          })

            .then(function (response) {

              console.log(response);

            })

            .catch(function (error) {

                console.log(error);

            });

            }

          },

相关文章

网友评论

      本文标题:axios 发送数据

      本文链接:https://www.haomeiwen.com/subject/eejhpctx.html