diff --git a/zh-cn/.idea/workspace.xml b/zh-cn/.idea/workspace.xml new file mode 100644 index 0000000000000000000000000000000000000000..e945d2254bdc71c904a4f8eaab687e695212ee57 --- /dev/null +++ b/zh-cn/.idea/workspace.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1663661383552 + + + + + + + + + \ No newline at end of file diff --git a/zh-cn/application-dev/.idea/.gitignore b/zh-cn/application-dev/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..73f69e0958611ac6e00bde95641f6699030ad235 --- /dev/null +++ b/zh-cn/application-dev/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/zh-cn/application-dev/.idea/application-dev.iml b/zh-cn/application-dev/.idea/application-dev.iml new file mode 100644 index 0000000000000000000000000000000000000000..bc2cd87409057301f546d83bd548111b9a241cb1 --- /dev/null +++ b/zh-cn/application-dev/.idea/application-dev.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/zh-cn/application-dev/.idea/modules.xml b/zh-cn/application-dev/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..4d3f56b9a4c271912d9c9ddf8aca40a9007ae411 --- /dev/null +++ b/zh-cn/application-dev/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/zh-cn/application-dev/.idea/vcs.xml b/zh-cn/application-dev/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..b2bdec2d71b6a5ce4ae49efc37516809c50e4d5e --- /dev/null +++ b/zh-cn/application-dev/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-dataSharePredicates.md b/zh-cn/application-dev/reference/apis/js-apis-data-dataSharePredicates.md index d41d9560db9b1f315df8282e5b477865402b2ea5..c81aa3b55b9356cb3240fa75dc2d1bb581c2bd5e 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-dataSharePredicates.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-dataSharePredicates.md @@ -349,7 +349,7 @@ like(field: string, value: string): DataSharePredicates | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------- | | field | string | 是 | 数据库表中的列名。 | -| value | string | 是 | 指示要与谓词匹配的通配符。
'%'代表零个、一个或多个数字或字符,'_'代表一个单一的数字或字符,不区分大小写。| +| value | string | 是 | 指示要与谓词匹配的通配符表达式。
表达式中'%'代表零个、一个或多个数字或字符,'_'代表一个单一的数字或字符,不区分大小写。| **返回值:** @@ -379,7 +379,7 @@ unlike(field: string, value: string): DataSharePredicates | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------- | | field | string | 是 | 数据库表中的列名。 | -| value | string | 是 | 指示要与谓词匹配的通配符。
'%'代表零个、一个或多个数字或字符,'_'代表一个单一的数字或字符,不区分大小写。 | +| value | string | 是 | 指示要与谓词匹配的通配符表达式。
表达式中'%'代表零个、一个或多个数字或字符,'_'代表一个单一的数字或字符,不区分大小写。 | **返回值:** @@ -409,7 +409,7 @@ glob(field: string, value: string): DataSharePredicates | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------- | | field | string | 是 | 数据库表中的列名。 | -| value | string | 是 | 指示要与谓词匹配的通配符。
'*'代表零个、一个或多个数字或字符,'?'代表一个单一的数字或字符,区分大小写。| +| value | string | 是 | 指示要与谓词匹配的通配符表达式。
表达式中'*'代表零个、一个或多个数字或字符,'?'代表一个单一的数字或字符,区分大小写。| **返回值:**