檢索使用HttpRequest的數據時,目前我使用的是簡單的HttpRequest檢索JSON文件:使用未來的飛鏢
void getConfigData(String url) {
var request = new HttpRequest.get(url, this.onSuccess);
}
void onSuccess(HttpRequest req) {
JsonObject conf = new JsonObject.fromJsonString(req.responseText);
MenuItemCollection top_bar = new MenuItemCollection();
// and parse the JSON data ...
}
我想知道,如果是我應該使用期貨,而不是回調?
你的意思是「應該使用期貨而不是回調」? –
爲了詳細說明,我在讀鏢行動由Chris,對期貨的章節,所以我在想,如果我要得到使用和未來完成者,而不是使用的onSuccess回調如上圖所示的服務器上的文件。這是關於如何做正確的事情。 –