我插入文档时没有显示标题

时间:2016-08-17 13:19:30

标签: ms-word office-js

我正在开发一个Word Addin,用户可以从中选择从SharePoint加载的一些预定义模板(docx)文档。通过向导,用户可以在文档中设置内容控件。到目前为止,这是一次非常好的体验。

但是,在加载带有标题的docx文件时出现问题。

我正在使用此函数加载docx文件:(下面的完整代码)

body.insertFileFromBase64(templateDoc.base64String, Word.InsertLocation.end);

这样可行,但有时源文档的标题不存在。或者其他时间它们在所有页面上,而第一页应该是不同的。

问题: 是否应该插入带有页眉和页脚的文档,我做错了什么?

private applyTemplate(template: Template): void {
if (!Office.context.requirements.isSetSupported("WordApi", 1.2)) {
    this.errorMessage = 'Deze versie van Word wordt niet ondersteund';
    this.showError = true;
    return;
}

let calls: [
    ng.IPromise<TemplateFile>
] = [
        this.appService.getTemplateDocument(template.templateId)
    ];

this.q.all(calls)
    .then((results: any[]) => {
        let templateDoc: TemplateFile = results[0].data;

        Word.run((context) => {
            let body = context.document.body;
            let sections = context.document.sections;
            context.load(sections, 'body/style');
            body.clear();
            return context.sync()
                .then(() => {
                    sections.items[0].getHeader(Word.HeaderFooterType.primary).clear();
                    sections.items[0].getFooter(Word.HeaderFooterType.primary).clear();

                    return context.sync()
                        .then(() => {
                            body.insertFileFromBase64(templateDoc.base64String, Word.InsertLocation.end);
                            this.appService.setTemplateSelected(template);                                      
                            return context.sync()
                                .then(() => {
                                    this.go('/customers');
                                    this.scope.$apply();
                                }, ((result: OfficeErrorMessage) => {
                                    this.setErrorState(result);
                                }));
                        }, ((result: OfficeErrorMessage) => {
                            this.setErrorState(result);
                        }));
                }, ((result: OfficeErrorMessage) => {
                    this.setErrorState(result);
                }));
        });
    }, ((result: ng.IHttpPromiseCallbackArg<ErrorMessage>) => {
        this.errorMessage = result.data.exceptionMessage;
        this.showError = true;
        this.scope.$apply();
    }));
}

***编辑 我看到这是一个新版本: https://github.com/OfficeDev/office-js-docs/blob/WordJs_1.3_Openspec/word/resources/application.md

与我正在做的事情有什么不同?

1 个答案:

答案 0 :(得分:1)

根据设计行为,当您使用insertFileFromBase64方法插入文件时,我们既不替换文档的页眉/页脚也不替换文档的customXMLParts(可能已经存在页眉和页脚,XMLParts也是如此)

因此,如果您需要更新页眉和页脚,则必须在插入文件后执行此操作。 (使用api,您可以为每个部分,第一页,偶数,奇数页插入单词支持的3种类型的标题)

希望这会有所帮助。 谢谢! 胡安。