getPathFromContext

从 getStaticProps 或 getServerSideProps 上下文中返回路径 (slug)。


const slug = drupal.getPathFromContext(
context,
options?: {
pathPrefix,
}
): string
  • context: GetStaticPropsContext | GetServerSidePropsContext
    • 必需
    • 来自 getStaticPropsgetServerSideProps 的上下文。
  • options
    • 可选
    • pathPrefix: string: 如果您是从子目录调用,请设置 pathPrefix。例如:对于 /articles/[...slug].tsx,使用 pathPrefix: "/articles"

示例

  • getStaticProps 上下文中获取路径 (slug)。
export async function getStaticProps(context) {
const slug = await drupal.getPathFromContext(context)
}