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


Dart Uri.encodeComponent用法及代碼示例


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

用法:

String encodeComponent(
   String component   
)

使用 percent-encoding 對字符串 component 進行編碼,以使其安全地用作 URI 組件。

除大寫和小寫字母、數字和字符-_.!~*'() 之外的所有字符均采用百分比編碼。這是 RFC 2396 中指定的字符集,它是為 ECMA-262 版本 5.1 中的 encodeUriComponent 指定的。

手動編碼路徑段或查詢組件時,請記住在構建路徑或查詢字符串之前分別對每個部分進行編碼。

對於編碼查詢部分,請考慮使用 encodeQueryComponent

為避免顯式編碼的需要,請在構造 Uri 時使用 pathSegmentsqueryParameters 可選命名參數。

例子:

const request = 'http://example.com/search=Dart';
final encoded = Uri.encodeComponent(request);
print(encoded); // http%3A%2F%2Fexample.com%2Fsearch%3DDart

相關用法


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