Ich habe ein Nuxt-Projekt. Wenn ich von http://localhost:3000/catalog/postery
更改路由到http://localhost:3000/catalog/postery/all?photos%5B%5D=262
aus gehe, scrollt meine Seite erst nach oben, nachdem sich meine Route geändert hat
Meine Datei scrollBehavior.js:
export default async function (to, from, savedPosition) { if ( (to.path.indexOf("/catalog/") !== -1 && to.path.indexOf("/all") === -1 && Object.keys(to.query).length > 0) || (to.path.indexOf("/search") !== -1 && Object.keys(to.query).length > 0) || (to.name === "product-type-id" && Object.keys(to.query).length > 0) || (from.name === "product-type-id" && to.name === "product-type-id" && to.params.type != from.params.type) ) { return; } if (to.path.indexOf("/catalog/") !== -1 && savedPosition != null) { return { x: 0, y: savedPosition.y }; } return { x: 0, y: 0 }; }
Wie verhindere ich, dass die Seite nach oben scrollt, bevor ich die Route ändere?
所以,你确实想要:
从Vue路由器的文档来看,你可以使用这样的代码
/app/router.scrollBehavior.js
你也可以使用条件或者
setTimeout
来实现这个答案使用
vue-scrollto
也可能有所帮助。最后的选择是使用一些过渡效果来隐藏丑陋的抖动/加载,这实际上可以非常吸引人。