dart:html
库中HttpRequest.getString
方法的用法介绍如下。
用法:
Future<String> getString(
String url,
{bool? withCredentials,
void onProgress(
ProgressEvent e
)?}
)
为指定的 url
创建 GET 请求。
这类似于request,但专门用于返回文本内容的 HTTP GET 请求。
要添加查询参数,请将它们附加到 url
之后的 ?
,使用 =
将每个键连接到其值,并使用 &
分隔键值对。
var name = Uri.encodeQueryComponent('John');
var id = Uri.encodeQueryComponent('42');
HttpRequest.getString('users.json?name=$name&id=$id')
.then((String resp) {
// Do something with the response.
});
也可以看看:
相关用法
- Dart HttpRequest.postFormData用法及代码示例
- Dart HttpRequest.request用法及代码示例
- Dart HttpRequest用法及代码示例
- Dart HttpRequest构造函数用法及代码示例
- Dart HttpResponse用法及代码示例
- Dart HttpOverrides用法及代码示例
- Dart HttpClient.findProxy用法及代码示例
- Dart HttpClientRequest用法及代码示例
- Dart HttpServer.defaultResponseHeaders用法及代码示例
- Dart HttpClient用法及代码示例
- Dart HttpClient.findProxyFromEnvironment用法及代码示例
- Dart HttpClientResponse用法及代码示例
- Dart HttpDate.parse用法及代码示例
- Dart HttpClient.connectionFactory用法及代码示例
- Dart HttpClientRequest.followRedirects用法及代码示例
- Dart HttpHeaders用法及代码示例
- Dart HttpClient.keyLog用法及代码示例
- Dart HttpServer用法及代码示例
- Dart HttpClientRequest.abort用法及代码示例
- Dart HtmlCollection.last用法及代码示例
- Dart HtmlEscape用法及代码示例
- Dart HtmlEscapeMode用法及代码示例
- Dart HtmlCollection.elementAt用法及代码示例
- Dart HtmlCollection.length用法及代码示例
- Dart HtmlDocument.registerElement2用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 getString method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。