onenote导入html文件,OneNote加入:获取HTML内容
在example中,提供了用于獲取RichText的代碼。它能夠獲得頁面的文本內容,但我似乎無法得到它返回頁面格式化內容的HTML。OneNote加入:獲取HTML內容
例如:
Header:
A
B
應該是:
Header:
- A
- B
然而,示例代碼使用richText/text和只返回Header:。是否有可能做類似richText/HTML并獲得上面顯示的HTML? (注意:我只想使用加載項而不是OneNote REST API。)
謝謝!從文檔
代碼片段:
OneNote.run(function (context) {
// Get the collection of pageContent items from the page.
var pageContents = context.application.getActivePage().contents;
// Get the first PageContent on the page, and then get its outline's paragraphs.
var outlinePageContents = [];
var paragraphs = [];
var richTextParagraphs = [];
// Queue a command to load the id and type of each page content in the outline.
pageContents.load("id,type");
// Run the queued commands, and return a promise to indicate task completion.
return context.sync()
.then(function() {
// Load all page contents of type Outline
$.each(pageContents.items, function(index, pageContent) {
if(pageContent.type == 'Outline')
{
pageContent.load('outline,outline/paragraphs,outline/paragraphs/type');
outlinePageContents.push(pageContent);
}
});
return context.sync();
})
.then(function() {
// Load all rich text paragraphs across outlines
$.each(outlinePageContents, function(index, outlinePageContent) {
var outline = outlinePageContent.outline;
paragraphs = paragraphs.concat(outline.paragraphs.items);
});
$.each(paragraphs, function(index, paragraph) {
if(paragraph.type == 'RichText')
{
richTextParagraphs.push(paragraph);
paragraph.load("id,richText/text");
}
});
return context.sync();
})
.then(function() {
// Display all rich text paragraphs to the console
$.each(richTextParagraphs, function(index, richTextParagraph) {
var richText = richTextParagraph.richText;
console.log("Paragraph found with richtext content : " + richText.text + " and richtext id : " + richText.id);
});
return context.sync();
});
})
.catch(function(error) {
console.log("Error: " + error);
if (error instanceof OfficeExtension.Error) {
console.log("Debug info: " + JSON.stringify(error.debugInfo));
}
});
+0
richTextParagraph.richText對象有哪些屬性?其中有一個html嗎?如果是這樣,它的返回類型是什么? –
+0
屬性只有'id'和'text'(都是'String'類型)。根據https://dev.office.com/reference/add-ins/onenote/richtext –
總結
以上是生活随笔為你收集整理的onenote导入html文件,OneNote加入:获取HTML内容的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 五桌面工具来创建优秀的Windows环境
- 下一篇: ChartCtrl源码剖析之——CCha