鸿蒙语言基础类库:ohos.uri URI字符串解析

电子说

1.3w人已加入

描述

URI字符串解析

鸿蒙说明: 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 开发前请熟悉鸿蒙开发指导文档 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]

导入模块

import uri from '@ohos.uri'

URI

属性

系统能力: SystemCapability.Utils.Lang

名称参数类型可读可写说明
schemestring获取URI 的协议部分。
userInfostring获取 URI 的用户信息部分。
hoststring获取 URI 的主机名部分(不带端口)。
portstring获取 URI 的端口部分。
pathstring获取 URI 的路径部分。
querystring获取 URI 的查询部分。
fragmentstring获取 URI 的片段部分
authoritystring获取此URI的解码权限组件部分。
sspstring获取URI的解码方案特定部分。

constructor

constructor(uri: string)

constructor是URI的构造函数。

系统能力: SystemCapability.Utils.Lang

参数:

参数名类型可读可写说明
uristring入参对象。

示例:

var mm = 'http://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
new uri.URI(mm); // Output 'http://username:password@host:8080/directory/file?foo=1&bar=2#fragment';
new uri.URI('http://username:password@host:8080'); // Output 'http://username:password@host:8080';

toString

toString(): string

系统能力: SystemCapability.Utils.Lang

返回适用于URL中的查询字符串。

返回值:

类型说明
string返回网址的字符串序列化。

示例:

const url = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
url.toString()

equals

equals(other: URI): boolean

判断此URI是否与其他URI对象相等。

系统能力: SystemCapability.Utils.Lang

参数:

参数名类型必填说明
other[URI]需要比较的URI对象。

返回值:

类型说明
boolean返回true表示相等,否则返回false。

示例:

const uriInstance = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da');
const uriInstance1 = new uri.URI('http://username:password@host:8080/directory/file?query=pppppp#qwer=da#fragment');
uriInstance.equals(uriInstance1);

checkIsAbsolute

checkIsAbsolute(): boolean

判断此URI是否为绝对URI(是否定义了scheme组件)。

系统能力: SystemCapability.Utils.Lang

返回值:

类型说明
boolean返回true表示该URI是否为绝对URI。

示例:

const uriInstance = new uri.URI('http://username:password@www.qwer.com:8080?query=pppppp');
uriInstance.checkIsAbsolute();

normalize

normalize(): URI

规范化此URI的路径。

系统能力: SystemCapability.Utils.Lang

返回值:

鸿蒙

类型说明HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿
URI返回一个path被规范化后的URI对象。

示例:

const uriInstance = new uri.URI('http://username:password@www.qwer.com:8080/path/path1/../path2/./path3?query=pppppp');
let uriInstance1 = uriInstance.normalize();
uriInstance1.path;

审核编辑 黄宇

打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分