0
有沒有人知道如何在飛鏢中做出「PUT」請求?飛鏢中的PUT請求
我這樣做,但我不知道如何繼續:
HttpRequest request =new HttpRequest();
request.open("PUT", url);
...
感謝。
有沒有人知道如何在飛鏢中做出「PUT」請求?飛鏢中的PUT請求
我這樣做,但我不知道如何繼續:
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 –