我需要在我的应用程序中选择一个图像并将其保存在应用程序的文件夹中,我做了一个表格和一个PHP,它实现了我想要的东西,没有英特尔XDK但是使用英特尔XDK我用ajax制作了它并且只用了一个时间,现在我每次在模拟器中测试应用程序时都会获得404“xhttp.status”。
这是我的javascript代码:
function guardarImagen(){
var formData=$('#formulario').serialize();
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
alert("Subida de Imagen exitosa");
}else{
alert(xhttp.readyState + " & " + xhttp.status);
}
};
xhttp.open("POST", "guardarImg.php", true);
xhttp.setRequestHeader("Content-type", "multipart/form-data");
xhttp.send(formData);
}
我可以做些什么来确保工作,因为我在其他帖子中看到XDK有时在模拟器中出现问题但在手机中安装一切正常。
另外,我没有手机(Android)进行测试。 我这样做了:(Intel XDK) can´t use a 'Post' form to use a PHP function
我的代码很好吗? 我还能做什么?
谢谢大家。