getPathFromContext
从 getStaticProps 或 getServerSideProps 上下文中返回路径 (slug)。
const slug = drupal.getPathFromContext( context, options?: { pathPrefix, }): string
context: GetStaticPropsContext | GetServerSidePropsContext
- 必需
- 来自
getStaticProps
或getServerSideProps
的上下文。
options
- 可选
pathPrefix: string
: 如果您是从子目录调用,请设置 pathPrefix。例如:对于/articles/[...slug].tsx
,使用pathPrefix: "/articles"
。
示例
- 从
getStaticProps
上下文中获取路径 (slug)。
export async function getStaticProps(context) { const slug = await drupal.getPathFromContext(context)}