Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
2f32c086
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2f32c086
编写于
12月 14, 2022
作者:
Z
zhangyouyou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add url changelog for OpenHarmony 3.2.10.1
Signed-off-by:
N
zhangyouyou
<
zhangyouyou2@huawei.com
>
上级
b6319e19
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
70 addition
and
0 deletion
+70
-0
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-url.md
...e-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-url.md
+70
-0
未找到文件。
zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-url.md
0 → 100644
浏览文件 @
2f32c086
# url系统JS API变更Changelog
OpenHarmony 3.2.10.1(Mr)版本相较于OpenHarmony 3.2.beta4版本,url子系统的API变更如下
## cl.url.1.URLParams类接口变更
url子系统URLParams类构造函数存在变更:
constructor(init?: string
[][]
| Record
<string
,
string
>
| string | URLSearchParams) 改为 constructor(init?: string
[][]
| Record
<string
,
string
>
| string | URLParams);参数类型为原来的URLSearchParams类改为URLParams类。
开发者需要根据以下说明对应用进行适配。
**变更影响**
影响API9版本的JS接口,应用需要进行适配才可以在新版本SDK环境正常实现功能。
**关键的接口/组件变更**
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| :------------------------ | ------------------- | ------------------------------------------------------------ | -------- |
| @ohos.url | URLParams | constructor(string
[][]
\|
Record
<
string, string
>
\|
string
\|
URLSearchParams) | 删除 |
| @ohos.url | URLParams | constructor(string
[][]
\|
Record
<
string, string
>
\|
string
\|
URLParams)| 变更
**适配指导**
应用中创建URLParams对象实例可参考下列代码
示例:
```
ts
import
url
from
'
@ohos.url
'
try
{
let
params1
=
new
Url
.
URLParams
(
'
?user=abc&query=xyz
'
)
let
params2
=
new
Url
.
URLParams
(
params1
)
var
result
=
params2
.
toString
()
console
.
log
(
result
)
//"user=abc&query=xyz"
}
catch
(
err
)
{
console
.
error
(
`Fail to ceate URLParams.codeis
${
err
.
code
}
,message is
${
err
.
message
}
`
);
}
```
## cl.url.2.URL类属性变更url子系统URLParams类构造函数存在变更:
url子系统URL类属性存在变更:
废弃searchParams: URLSearchParams属性,新增params: URLParams属性
开发者需要根据以下说明对应用进行适配。
**变更影响**
影响API9版本的JS接口,应用需要进行适配才可以在新版本SDK环境正常实现功能。
**关键的接口/组件变更**
| 模块名 | 类名 | 方法/属性/枚举/常量 | 变更类型 |
| :------------------------ | ------------------- | ------------------------------------------------------------ | -------- |
| @ohos.url | URL | searchParams: URLSearchParams; |废弃版本:9
<br>
|
| @ohos.url | URL | params: URLParams; | 新增 |
**适配指导**
应用中创建URLParams对象实例可参考下列代码
示例:
```
ts
import
url
from
'
@ohos.url
'
let
that
=
new
Url
.
URL
(
'
http://username:password@host:8080/directory/file?你好=china#qwer=da
'
)
let
params
=
that
.
URLParams
var
result
=
params
.
toString
()
console
.
log
(
result
)
//%E4%BD%A0%E5%A5%BD=china
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录