最近、私はQt-Qmlを使ってNokiaの携帯電話に取り組んでいます。私は与えられたHTTPS URLにPOST要求をしなければなりません。 私はQMLを使用しています。私はJavascriptでこれをやってみようとしています。Https POST/GET with Qml/Qt
誰でも知っていますか?それはQMLのJavascriptを使って行うことができますか? QTでそれを作る方法に関するアドバイスはありますか?
var http = new XMLHttpRequest()
var url = "myform.xsl_submit";
var params = "num=22&num2=333";
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.setRequestHeader("Content-length", params.length);
http.setRequestHeader("Connection", "close");
http.onreadystatechange = function() {//Call a function when the state changes.
if(http.readyState == 4 && http.status == 200) {
print("ok");
}else{
print("cannot connect");
}
}
http.send(params);
'XMLHttpRequest.DONE'は'よりも覚えやすいです4' ... –