getString 静态方法

Future<String> getString(
  1. String url,
  2. {bool? withCredentials,
  3. void onProgress(
    1. 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.
});

另请参阅

实现

static Future<String> getString(String url,
    {bool? withCredentials, void onProgress(ProgressEvent e)?}) {
  return request(url,
          withCredentials: withCredentials, onProgress: onProgress)
      .then((HttpRequest xhr) => xhr.responseText!);
}