2015-06-15 150 views
0

有沒有人知道如何在飛鏢中做出「PUT」請求?飛鏢中的PUT請求

我這樣做,但我不知道如何繼續:

HttpRequest request =new HttpRequest(); 
request.open("PUT", url); 
... 

感謝。

回答

2
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. 
}); 
+0

如何傳遞一個或多個文件? – MalumaDev

+0

聽起來像一個不同的問題。可能http://stackoverflow.com/questions/25742113或http://stackoverflow.com/questions/25025084 –