page.path
解释:页面路径。
page.path: string
示例代码:
automator.launch().then(async smartProgram => {
await smartProgram.reLaunch('/pages/api/api');
const page = await smartProgram.currentPage();
// pages/api/api
console.log(page.path)
});
本文档使用 BookStack 构建