我無法連接到任何使用下面的kony.net.httpRequest協議的服務器。我總是得到一個「服務器錯誤」的狀態文本。簡單kony.net.http請求不工作
function test(){
var xmlhttp = new kony.net.HttpRequest();
var url = "http://httpbin.org/get";
xmlhttp.open(constants.HTTP_METHOD_GET, url);
xmlhttp.send();
xmlhttp.onReadyStateChange = function(){ sunsetCallback(xmlhttp) };
return;
}
function sunsetCallback(xmlhttp){
alert(xmlhttp.statusText);
if (xmlhttp.responseType==constants.HTTP_RESPONSE_TYPE_DOCUMENT){
sunrise.lblSunrise.text=xmlhttp.response;
}
sunrise.lblSunset.text="ayy lmao";
xmlhttp.suspend();
return;
}
任何幫助歡迎您! (我曾嘗試將onReadyStateChange行放在打開的上方和下方,但不管是否執行了sunsetCallback函數)。