在js文件中增加
function officeAutomation() {
var p = {
"国家" : "中国",
"城市" : "北京"
};
var a = document.getElementById('attachmentEditor1_docExtObj');
a.excuteJSmethod('ov.WordAutoFillFields', OV.JSON.stringify(p));
}
其中:p是JSON格式的参数,内容是域标识和值。
attachmentEditor1是附件组件的ID
其它不用修改