當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。