我尝试在 NextJs 中使用动态路由。我缺乏有关如何在我的环境中进行动态路由的知识。 我通过以下方式在用户界面中映射我的所有路线:
routes.map((stop) => {
return (
<Link href={`/route/${stop.routeId}`}>
{router.push(`route/${stop.routeId}`)}
<div className={styles.title}>
{t('Route')} {stop.routeId}
</div>
</Link>
);
})
我的目标是为用户创建可共享的链接,例如,如果您有路由 12345,那么动态路由会为用户生成一个可共享的 URL(她可以将其发送给可以使用该链接打开相同路由的同事) ).
但是,这链接到导致错误的事件源网址:
TypeError: Cannot read property 'NEXT_PUBLIC_VB_EVENT_SOURCE_URL' of undefined