📅  最后修改于: 2022-03-11 14:56:47.989000             🧑  作者: Mango
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);
})