📜  fdart 字符串到 uri - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:56.984000             🧑  作者: Mango

代码示例1
// http://example.org/path?q=dart.
Uri.http("example.org", "/path", { "q" : "dart" });

// http://user:pass@localhost:8080
Uri.http("user:pass@localhost:8080", "");

// http://example.org/a%20b
Uri.http("example.org", "a b");

// http://example.org/a%252F
Uri.http("example.org", "/a%2F");