gpt4 book ai didi

typescript - Vue.js 路由器不调用 beforeRouteUpdate( typescript )

转载 作者:搜寻专家 更新时间:2023-10-30 21:49:02 25 4
gpt4 key购买 nike

我有一个组件,其中包含指向同一路由的路由器链接,但参数不同。导航到这些链接时,url 会发生变化,但数据不会更新。我定义了 beforeRouteUpdate,但它从未被调用。

import Vue from 'vue';
import { Component } from 'vue-property-decorator';
@Component
export default class AccountComponent extends Vue {
address: string;
account: Account;

data() {
return {
account: null
}
}

beforeRouteUpdate(to: any, from: any, next: any) {
console.log('beforeRouteUpdate for ' + to.params.address);
next();
}

mounted() {
this.address = this.$route.params.address;
this.loadData();
}

loadData() {
console.log('Fetching data for ' + this.address);
fetch('api/Account/Get?address=' + this.address)
.then(response => response.json() as Promise<Account>)
.then(data => {
this.account = data;
});
}
}

最佳答案

在问题被问到 2 年后,我自己就遇到了这个问题,但除了 Simsteve7 的回答之外,我还需要将该代码放在它自己的文件中

// router/componentHooks.ts

import Component from "vue-class-component";

// Register the router hooks with their names
Component.registerHooks([
"beforeRouteEnter",
"beforeRouteLeave",
"beforeRouteUpdate"
]);

然后在 main.ts 中导入它的第一行。

import './router/componentHooks' // <-- Needs to be first
import Vue from "vue";
import App from "./App.vue";
import router from "./router";

在我刚刚挂载组件的调用并通过 this.$route.params 获取 slug 之前。取而代之的是,我将所有内容都放在它自己的函数中,然后使用 this.$route.params 和 beforeRouteUpdate 的 to.params 从 mounted 中调用它。举个例子:

  async mounted() {
await this.loadPage(this.$route.params.id)
}

async beforeRouteUpdate(to, from, next) {
console.log(`beforeRouteUpdate ${to.params.id}`)
await this.loadPage(to.params.id)
next()
}

async loadPage(id) {
//...
}

来源:https://class-component.vuejs.org/guide/additional-hooks.html

关于typescript - Vue.js 路由器不调用 beforeRouteUpdate( typescript ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49235964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com