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


Dart Uri.https用法及代碼示例


dart:core 庫中Uri.https 的用法介紹如下。

用法:

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

根據權限、路徑和查詢創建一個新的 https URI。

除了設置為 https 的方案外,此構造函數與 Uri.http 相同。

例子:

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

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

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

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

相關用法


注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 Uri.https constructor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。