我想使用查询参数中的重复键构造一个类似“ .getAnnotation(Class<A> annotationType)
”的url字符串。由于JS不允许重复的密钥,我该如何使用Vue路由器?
scheduledAnnotation.fixedDelay();
答案 0 :(得分:0)
<router-link :to="doubleQuery">Double<router-link>
以及您的计算方法
computed: {
doubleQuery() {
return `${this.$route.path}?dataLakeStatus=1&dataLakeStatus=2`
}
}
答案 1 :(得分:0)
尝试以下操作:
private redirectToFirstPage() {
const query = {
page: this.currentPage.toString(),
dataLakeStatus: [1, 2]
};
this.$router.push({ query });
}