page.path

解释:页面路径。

  1. page.path: string

示例代码

  1. automator.launch().then(async smartProgram => {
  2. await smartProgram.reLaunch('/pages/api/api');
  3. const page = await smartProgram.currentPage();
  4. // pages/api/api
  5. console.log(page.path)
  6. });