如何使用NPM引用Office JS打字稿定义的beta版本?

时间:2018-07-03 01:43:38

标签: typescript office-js office-js-helpers

根据此link,beta版本位于程序包下的2018-07-02 20:28:44.547645-0500 chem-lab-practical[529:464344] [DYMTLInitPlatform]. platform initialization successful 2018-07-02 20:28:44.781763-0500 chem-lab-practical[529:464294] Metal GPU Frame Capture Enabled 2018-07-02 20:28:44.783609-0500 chem-lab-practical[529:464294] Metal API Validation Enabled (lldb) 文件夹中。但是如何在我的项目中引用该文件?

1 个答案:

答案 0 :(得分:0)

Click here to open a related guide on how to update the app在安装office.js之后

请注意,该指南将库从CDN中拉到public/index.html中,因此您不必通过NPM安装它。也许首先使用这种技术开始使用

<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>

由于office.js文件直接注入到全局范围中,因此您可以从window对象访问API。您可以在该指南中找到详细信息。

window.Office.doSomething()
window.Excel.doSomething()
window.Word.doSomething()