Axios 方法中怎么修改组件的值?

发布于 2022-09-06 20:30:13 字数 421 浏览 11 评论 0

我有一个axios封装的方法:

this.$http.post(Urls.register(), this.formItem).then(function (response) {
          
        }.bind(this))
          .catch(function (response) {
            // 这里我想改变 this.$data.loading=false 怎么做?
            console.log(response)
          })

我在.catch()方法中想要改变一个组件的值怎么改变?这里好像不能使用this.loading,这里的thisundefined

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

久伴你 2022-09-13 20:30:13
this.$http.post(Urls.register(), this.formItem).then(response=>{
          
        })
          .catch(response=>{
            this指向vue
            console.log(response)
          })



使用箭头函数,更改this指向Vue,或者你继续在catch后面bind(this),但是es6的箭头函数已经很普及了

尐籹人 2022-09-13 20:30:13
this.$http.post(Urls.register(), this.formItem).then(function (response) {
          
        }.bind(this))
          .catch((response) => {
            this.$data.loading=false
            console.log(response)
          })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文