Skip to content
本页内容

url

通过 url 可以查看到文档的真实路径值(即 iframe 嵌套的 url)。

示例

//@file=base.docx
async function example() {
  await instance.ready();

  const url = await instance.url;
  console.log(url);
}