From 73d2b2becfc87de093d4c9a0713d591ea0aaf40e Mon Sep 17 00:00:00 2001 From: niudongyao Date: Tue, 20 Sep 2022 21:00:55 +0800 Subject: [PATCH] fix Signed-off-by: niudongyao --- zh-cn/.idea/workspace.xml | 62 +++++++++++++++++++ zh-cn/application-dev/.idea/.gitignore | 8 +++ .../application-dev/.idea/application-dev.iml | 8 +++ zh-cn/application-dev/.idea/modules.xml | 8 +++ zh-cn/application-dev/.idea/vcs.xml | 6 ++ .../apis/js-apis-data-dataSharePredicates.md | 6 +- 6 files changed, 95 insertions(+), 3 deletions(-) create mode 100644 zh-cn/.idea/workspace.xml create mode 100644 zh-cn/application-dev/.idea/.gitignore create mode 100644 zh-cn/application-dev/.idea/application-dev.iml create mode 100644 zh-cn/application-dev/.idea/modules.xml create mode 100644 zh-cn/application-dev/.idea/vcs.xml diff --git a/zh-cn/.idea/workspace.xml b/zh-cn/.idea/workspace.xml new file mode 100644 index 0000000000..e945d2254b --- /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 0000000000..73f69e0958 --- /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 0000000000..bc2cd87409 --- /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 0000000000..4d3f56b9a4 --- /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 0000000000..b2bdec2d71 --- /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 d41d9560db..c81aa3b55b 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 | 是 | 指示要与谓词匹配的通配符表达式。
表达式中'*'代表零个、一个或多个数字或字符,'?'代表一个单一的数字或字符,区分大小写。| **返回值:** -- GitLab