page.analyzePage() 的 value 属性为 null

page.analyzePage() has value property as null

提问人:user21286858 提问时间:3/23/2023 最后编辑:Eugene Astafievuser21286858 更新时间:3/23/2023 访问量:21

问:

尝试通过 Onenote 加载项中的 Onenote Javascript api 检索 onenote 页面的 html,但无法。

下面是一个代码片段:

await OneNote.run(async (context) => { 
    const page = context.application.getActivePage();
    return context
        .sync()
        .then(async function () {
            console.log(page.analyzePage())
        })
})

这将以以下方式登录到控制台:

{
    m_isLoaded:true,
    m_type:0,
    m_value:null,
    value:null,
    [[Prototype]]:Object
}

如何在 Add IN 中使用 Onenote javascript api 从 Onenote 获取 HTML?

我知道有一种方法可以通过 Graph Api 获取内容,但只能在 Onenote 加载项中使用 Javascript API。

office-addins onenote onenote-api javascript-api-for-office

评论


答: 暂无答案