gpt4 book ai didi

forms - 使用新的FormData()在Dart中发送HttpRequest

转载 作者:行者123 更新时间:2023-12-03 03:13:34 24 4
gpt4 key购买 nike

有人可以解释如何在Dart中使用new FormData()将表单数据发送到带有HttpRequest的服务器吗?还有其他获取和格式化数据的方式吗?

最佳答案

这是一个基本示例:

final xhr = new HttpRequest();
xhr.open('POST', url);
xhr.onReadyStateChange.listen((e) {
if (xhr.readyState == 4 && xhr.status == 200) {
// on OK
}
});

// send datas by specifying each element
xhr.send(new FormData()
..append('field1', x1)
..append('field2', x2)
);

// send datas by using an existing form and adding some additional datas
xhr.send(new FormData(formElement)
..append('field1', x1)
);

关于forms - 使用新的FormData()在Dart中发送HttpRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21893154/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com