From ab9c7f36304c3ee58041b77125d54362b517f52a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=9B=E4=BA=9A=E8=8A=B3?= Date: Tue, 29 Nov 2022 03:15:49 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-uri.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 葛亚芳 --- .../reference/apis/js-apis-uri.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-uri.md b/zh-cn/application-dev/reference/apis/js-apis-uri.md index 642bf26604..913a4fbde8 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-uri.md +++ b/zh-cn/application-dev/reference/apis/js-apis-uri.md @@ -1,6 +1,7 @@ # URI字符串解析 -> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** +> **说明:** +> > 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -16,7 +17,7 @@ import uri from '@ohos.uri' **系统能力:** SystemCapability.Utils.Lang -| 名称 | 参数类型 | 可读 | 可写 | 说明 | +| 名称 | 类型 | 可读 | 可写 | 说明 | | -------- | -------- | -------- | -------- | -------- | | scheme | string | 是 | 否 | 获取URI 的协议部分。 | | userInfo | string | 是 | 否 | 获取 URI 的用户信息部分。 | @@ -39,9 +40,9 @@ constructor是URI的构造函数。 **参数:** -| 参数名 | 类型 | 可读 | 可写 | 说明 | -| -------- | -------- | -------- | -------- | -------- | -| uri | string | 是 | 是 | 入参对象。 | +| 参数名 | 类型 | 必填 | 说明 | +| -------- | -------- | -------- | -------- | +| uri | string | 是 | 入参对象。 | **示例:** @@ -77,8 +78,10 @@ result.toString() ### equals(deprecated) -> **说明:**
-> 从API version 9开始废弃,建议使用[equalsTo9+](#equalsto9)替代。 + +> **说明:** +> +> 从API version 8开始支持,从API version 9开始废弃,建议使用[equalsTo9+](#equalsto9)替代。 equals(other: URI): boolean @@ -170,6 +173,7 @@ normalize(): URI | URI | 返回一个path被规范化后的URI对象。 | **示例:** + ```js const uriInstance = new uri.URI('http://username:password@www.qwer.com:8080/path/path1/../path2/./path3?query=pppppp'); let uriInstance1 = uriInstance.normalize(); -- GitLab