0
Кто-нибудь знает, как сделать запрос «PUT» в Dart?Запрос PUT в Dart
Я сделал это, но тогда я не знаю, как продолжить:
HttpRequest request =new HttpRequest();
request.open("PUT", url);
...
Спасибо.
Кто-нибудь знает, как сделать запрос «PUT» в Dart?Запрос PUT в Dart
Я сделал это, но тогда я не знаю, как продолжить:
HttpRequest request =new HttpRequest();
request.open("PUT", url);
...
Спасибо.
var resp = await HttpRequest.request('http://someurl.com',
method: 'PUT', sendData: data);
// Do something with the response.
или
HttpRequest.request('http://someurl.com',
method: 'PUT', sendData: data)
.then((HttpRequest resp) {
// Do something with the response.
});
Как я могу передать один или несколько файлов? – MalumaDev
Звучит как другой вопрос. Вероятно, http://stackoverflow.com/questions/25742113 или http://stackoverflow.com/questions/25025084 –