📜  pspdfkit 全局实例卸载 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:47.989000             🧑  作者: Mango

代码示例1
let instance = null;
PSPDFKit.load({
  document: "/sales-report.pdf",
  container: ".foo",
}).then((i) => {
  instance = i
})
.then(() => {
  // Unload the given instance
  PSPDFKit.unload(instance)
}).catch((error) => {
  console.error(error.message);
})