下面的几节是:
import { useSearchParams } from next/navigation ;
const searchParams = useSearchParams();
const currentPage = parseInt(searchParams.get( page ) || , 10) || 1;
我在《故事书》(stories
)中发现这一错误:
类型错误:Cannot读作(读取)
犯罪线是:
const currentPage = parseInt(searchParams.get( page ) || , 10) || 1;
阅读官方故事书 我试图这样做:
const meta: Meta<typeof ItemModal> = {
title: Example/List ,
component: ItemModal,
parameters: {
nextjs: {
appDirectory: true,
navigation: {
searchParams: {
page: 1 ,
},
},
},
},
};
Also this:
navigation: {
segments: [
[ page , 1 ],
],
},
而且:
navigation: {
segments: [[ ?page=1 ]],
},
But I m still getting the same error.
我做了什么错误?
还张贴了。
更新:我有<条码>console.log(海切帕拉姆: ,搜索帕拉姆);条码>,返回<条码>。 尽管我做了,该。
:是完整的组成部分。