Vue js PATCH http://127.0.0.1:8000/api/auth/profile 401(未经授权)

时间:2019-09-23 17:31:08

标签: laravel api vue.js

我有一个模态,可以在其中创建编辑用户。但是,当我单击“提交”按钮时,出现了401错误。

,我想更改名称而不更新页面 该方法如下所示:


    if(token){
      this.preformUpdate();
    }
  },
  methods: {
    preformUpdate: function() {
      this.loading = true;
      this.msgupdate = "Updated your profile";
      this.alert = true;
      axios
        .patch("/profile", {
          name: this.name,
          token: this.token
        })
        .then(response => {
          const name = localStorage.setItem("name", response.data.user.name);
          this.email = localStorage.getItem("email");
          console.log(response.data.user.name);
          this.loading = false;
        })
        .catch(error => {
          console.log(error);
          this.error = error.message;
          this.loading = false;
        });
    }
  } 

0 个答案:

没有答案