How can I redirect localpath to another page with params Nuxt Js(如何将本地路径重定向到另一个带有params Nuxt Js的页面)
本文介绍了如何将本地路径重定向到另一个带有params Nuxt Js的页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好,我有一些问题,我想将url中的参数推送到NuxtJs中的另一个页面
props: {
idPending: {
type: Number,
required: true
}
},
methods: {
fetchpage() {
const orderId = this.idPending;
this.$router.push(
this.localePath({
name: 'Checkout-Confirmation-orderId', // page with params orderId
params: { orderId: orderId }
})
);
}
}
当我这样做时,我出现此错误,我不明白为什么
Argument type {name: string, params: {orderId: Number}} is not assignable to parameter type RawLocation Type Number is not assignable to type string
请帮忙谢谢您
推荐答案
此错误实际上非常不言而喻,此处您只能使用String
类型。
可在此处找到确认:https://github.com/vuejs/vue-router/issues/2895#issuecomment-523549070
您可以使用String(orderId)
,在我看来它可能更快,但主要是更安全,因为在orderId
为NULL或未定义的情况下,它不会产生任何错误。
这篇关于如何将本地路径重定向到另一个带有params Nuxt Js的页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何将本地路径重定向到另一个带有params Nuxt Js的页面
基础教程推荐
猜你喜欢
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 响应更改 div 大小保持纵横比 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01