this.Dict是一个工具类,如果您在流程、内容管理、门户和服务管理中创建了数据字典,可以使用this.Dict类对数据字典进行增删改查操作。
从v8.0版本开始,支持在门户和服务管理中创建数据字典。
Syntax
//您可以通过this.Dict()对本应用或其他应用的数据字典中的数据进行增删改查,如下:
const dict = new this.Dict( options )
Example
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。流程脚本默认为process,服务管理中默认为service。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
//引用服务管理中的数据字典
const dict = new this.Dict({
"type": "service",
"name": "dictName"
});
//引用流程管理中的数据字典
const dict = new this.Dict({
"type": "process",
"application": "appName",
"name": "dictName"
});
//引用内容管理中的数据字典
const dict = new this.Dict({
"type": "cms",
"application": "appName",
"name": "dictName"
});
//引用门户管理中的数据字典
const dict = new this.Dict({
"type": "portal",
"application": "appName",
"name": "dictName"
});
Methods
static
get(pathopt, successopt, failureopt) → {Object|Array|String|Number|Boolean}
根据路径获取数据字典中的数据。
Syntax
const data = dict.get( path, success, failure )
Parameters
-
path
String
<optional>
数据字典中的数据路径,允许使用中文。当路径为多级时,用点号(.)分隔。当值为空的时候,表示获取数据字典中的所有数据。
-
success
function
<optional>
获取数据成功时的回调函数。流程设计后台脚本中无此参数。
-
failure
function
<optional>
获取数据失败时的回调。流程设计后台脚本中无此参数。
Returns
-
Object
Array
String
Number
Boolean
返回数据字典的数据,类型和配置数据字典时候指定的一致。
Example
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
const data = dict.get();
//data的值为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
}
]
}
const category = dict.get("category");
//category的值为
[
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
}
]
const array0 = dict.get("category.0");
//array0 的值为
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
}
const enable = dict.get("category.0.eanble");
//enable 的值为 true
Source
set(path, value, successopt, failureopt)
根据路径修改数据字典的数据。
Syntax
dict.set( path, data, success, failure )
Parameters
-
path
String
数据字典中的数据路径,允许使用中文。当路径为多级时,用点号(.)分隔。如果数据路径不存在,则报错。
-
value
Object
|Array
|String
|Number
|Boolean
修改后的数据
-
success
function
<optional>
设置数据成功时的回调函数。流程设计后台脚本中无此参数。
-
failure
function
<optional>
设置数据错误时的回调函数。流程设计后台脚本中无此参数。
Examples
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
dict.set( "category", { text : "系统公告", value : "system" }, function(data){
//data 形如
//{
// "id": "80ed5f60-500f-4358-8bbc-b7e81f77aa39" //id为数据字典ID
//}
}, function(xhr){
//xhr 为 xmlHttpRequest
});
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
dict.set( "archiveOptions", [ { text : "是" }, { text : "否" } ]);
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
},
{
"sequence" : 3.0,
"text": "系统公告",
"value": "system"
}
],
"archiveOptions" : [ { text : "是" }, { text : "否" } ]
}
dict.set( "category.2", { text : "县级公告", value : "county" }, function(data){
//data 形如
//{
// "id": "80ed5f60-500f-4358-8bbc-b7e81f77aa39" //id为数据字典ID
//}
}, function(xhr){
//xhr 为 xmlHttpRequest
});
/数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
},
{
"text": "县级公告",
"value": "county"
}
],
"archiveOptions" : [ { text : "是" }, { text : "否" } ]
}
dict.set( "category.1.sequence", 3 );
dict.set( "category.2.sequence", 2 );
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 3.0,
"text": "部门公告",
"value": "department"
},
{
"sequence": 2.0,
"text": "县级公告",
"value": "county"
}
],
"archiveOptions" : [ { text : "是" }, { text : "否" } ]
}
dict.set( "category_1", { text : "公司公告" } ); //出错,因为category_1在数据字典中不存在
Source
add(path, data, successopt, failureopt)
根据路径新增数据字典的数据。
Syntax
dict.add( path, data, success, failure )
Parameters
-
path
String
数据字典中的数据路径,允许使用中文。当路径为多级时,用点号(.)分隔。如果path在数据字典中已有数据,且原有数据是数组,则数组添加一项;如果原有数据不是数组,则报错。
-
data
Object
|Array
|String
|Number
|Boolean
需要新增的数据
-
success
function
<optional>
增加数据成功时的回调函数。流程设计后台脚本中无此参数。
-
failure
function
<optional>
增加数据错误时的回调函数。流程设计后台脚本中无此参数。
Examples
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
dict.add( "category", { text : "系统公告", value : "system" }, function(data){
//data 形如
//{
// "id": "80ed5f60-500f-4358-8bbc-b7e81f77aa39" //id为数据字典ID
//}
}, function(xhr){
//xhr 为 xmlHttpRequest
});
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
name : "bulletinDictionary", // 数据字典的名称、别名、id
});
dict.add( "category", { text : "系统公告", value : "system" }, function(data){
//data 形如
//{
// "id": "80ed5f60-500f-4358-8bbc-b7e81f77aa39" //id为数据字典ID
//}
}, function(xhr, text, error){
//xhr 为 xmlHttpRequest, text 为错误文本, error为Error对象
});
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
},
{
"text": "系统公告",
"value": "system"
}
]
}
dict.add( "category.2.sequence", 3 );
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
},
{
"sequence" : 3.0,
"text": "系统公告",
"value": "system"
}
]
}
dict.add( "archiveOptions", {
"yes" : "是",
"no" : "否"
});
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 2.0,
"text": "部门公告",
"value": "department"
},
{
"sequence" : 3.0,
"text": "系统公告",
"value": "system"
}
],
"archiveOptions" : {
"yes" : "是",
"no" : "否"
}
}
dict.add( "category.3", { text : "系统公告", value : "system" }); //出错,因为不能对数组下标直接赋值
dict.add( "category.1.value", { text : "系统公告" } ); //出错,因为不能对已经存在的非数组路径赋值
Source
delete(path, successopt, failureopt)
根据路径删除数据字典的数据。流程设计后台脚本中无此方法。
Syntax
dict.delete( path, success, failure )
Parameters
-
path
String
数据字典中的数据路径,允许使用中文。当路径为多级时,用点号(.)分隔。如果数据路径不存在,则报错。
-
success
function
<optional>
删除数据成功时的回调函数。
-
failure
function
<optional>
删除数据错误时的回调函数。
Examples
const dict = new this.Dict({
//type: 应用类型。可以为process cms portal service。默认为process。
type : "cms",
application : "bulletin", //流程、CMS的名称、别名、id, 默认为当前应用
name : "bulletinDictionary", //流程、CMS、门户管理的名称、别名、id。引用服务管理的数组字典则忽略该参数。
});
dict.delete( "category", function(){
}, function(xhr){
//xhr 为 xmlHttpRequest
});
const dict = new this.Dict("bulletinDictionary");
dict.delete( "archiveOptions");
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
* "value": "company"
},
{
"enable": "false",
"sequence": 3.0,
"text": "部门公告",
"value": "department"
},
{
"sequence": 2.0,
"text": "县级公告",
"value": "county"
}
]
}
dict.delete( "category.2.sequence", function(data){
//data 形如
//{
// "id": "80ed5f60-500f-4358-8bbc-b7e81f77aa39" //id为数据字典ID
//}
}, function(xhr){
//xhr 为 xmlHttpRequest
});
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 3.0,
"text": "部门公告",
"value": "department"
},
{
"text": "县级公告",
"value": "county"
}
]
}
dict.delete( "category.2");
//数据字典的值变为
{
"category": [
{
"enable": true,
"sequence": 1.0,
"text": "公司公告",
"value": "company"
},
{
"enable": "false",
"sequence": 3.0,
"text": "部门公告",
"value": "department"
}
]
}
dict.delete( "category_1" ); //出错,因为category_1在数据字典中不存在