作者 | 日期 |
---|---|
雨中星辰 | 2018-12-20 |
描述
editorConfig部分允许更改与编辑器界面相关的参数:打开模式(查看器或编辑器),界面语言,其他按钮等。
参数
名称 | 描述 | 类型 | 例 |
---|---|---|---|
* callbackUrl | 指定文档存储服务的绝对URL (必须由在自己的服务器上使用ONLYOFFICE文档服务器的软件集成商实现)。 | string | “https://example.com/url-to-callback.ashx” |
user | 定义当前正在查看或编辑文档的用户: × firstname - 用户的第一个名字。从版本4.2开始不推荐使用,请改用名称, type:string, example:“John”;* × id - 用户的标识, type:string, example:“78e1e841”; × lastname - 用户的姓氏。从版本4.2开始不推荐使用,请改用名称, type:string, example:“Smith”;* × name - 用户的全名。从版本4.2开始使用, type:string, example:“John Smith”。 |
object | |
createUrl | 定义创建后可在其中创建和使用的文档的绝对URL。如果未指定,则不会有创建按钮。 | string | “https://example.com/url-to-create-document/” |
lang | 定义编辑器界面语言(如果存在除英语之外的其他语言)。使用两个字母(de,ru,it等)或四个字母(en-US,fr-FR等)语言代码设置。默认值为“en-US”。 | 串 | “EN-US” |
---|---|---|---|
mode | 定义编辑器打开模式。可以是查看打开文档以供查看,也可以编辑以在编辑模式下打开文档,允许对文档数据应用更改。默认值为“编辑”。 | string | “编辑” |
recent | 在Open Recent ...菜单选项中定义文档的存在或不存在,其中可以设置以下文档参数: × folder - 存储文档的文件夹(如果文档存储在根文件夹中,则可以为空), type:string, example:“Example Files”; × title - 将在Open Recent ...菜单选项中显示的文档标题, type:string, example:“exampledocument1.docx”; × url - 存储文档的绝对URL, type:string, example:“https://example.com/exampledocument1.docx”。 |
array of object |
- - 必填字段
例
var docEditor = new DocsAPI.DocEditor("placeholder", {
"editorConfig": {
"callbackUrl": "https://example.com/url-to-callback.ashx",
"createUrl": "https://example.com/url-to-create-document/",
"lang": "en-US",
"mode": "edit",
"recent": [
{
"folder": "Example Files",
"title": "exampledocument1.docx",
"url": "https://example.com/exampledocument1.docx"
},
{
"folder": "Example Files",
"title": "exampledocument2.docx",
"url": "https://example.com/exampledocument2.docx"
},
...
],
"user": {
"id": "78e1e841",
"name": "John Smith"
}
},
...
});
其中example.com是安装文档管理器和文档存储服务的服务器的名称。请参阅“ 工作原理”部分以了解有关文件服务器服务客户端 - 服务器交互的更多信息。
onlyoffice中文指南 目录
【onlyoffice中文指南】0-基本概念
【onlyoffice中文指南】1-onlyoffice的工作原理
【onlyoffice中文指南】2-打开文件
【onlyoffice中文指南】3-保存文件
【onlyoffice中文指南】4-协同编辑
【onlyoffice中文指南】5-转换和下载文件
【onlyoffice中文指南】6-文档历史
【onlyoffice中文指南】7-安全
【onlyoffice中文指南】8-高级参数
【onlyoffice中文指南】9-回调处理程序
【onlyoffice中文指南】10-Document配置
【onlyoffice中文指南】11-编辑器(Editor)参数配置
【onlyoffice中文指南】12-问题及排除
本文翻译自官方文档
网友评论