当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Dart Uri.http用法及代码示例


dart:core 库中Uri.http 的用法介绍如下。

用法:

Uri.http(
   String authority,    
   String unencodedPath,    
   [Map<String, dynamic>? queryParameters]   
)

根据权限、路径和查询创建一个新的 http URI。

例子:

var uri = Uri.http('example.org', '/path', { 'q' : 'dart' });
print(uri); // http://example.org/path?q=dart

uri = Uri.http('user:password@localhost:8080', '');
print(uri); // http://user:password@localhost:8080

uri = Uri.http('example.org', 'a b');
print(uri); // http://example.org/a%20b

uri = Uri.http('example.org', '/a%2F');
print(uri); // http://example.org/a%252F

scheme 始终设置为 http

userInfohostport 组件是从 authority 参数设置的。如果authoritynull或为空,则创建的Uri没有权限,不能直接用作HTTP URL,必须有非空主机。

path 组件由unencodedPath 参数设置。传递的路径不得编码,因为此构造函数对路径进行编码。

query 组件是从可选的queryParameters 参数中设置的。

相关用法


注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 Uri.http constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。