我正在开发 Cakephp 2.x。
我的视图页面上有一个加载器/微调器,它正在等待用户移动设备的响应。不幸的是,我完全不知道如何从移动设备获取请求,并实时更新页面内容。
这是功能
<script>
var cancelled = true;
$.modal.prompt('Enter message :', function(value)
{
$.ajax({
type:"POST",
data:{value:value},
url:"/cakephp/api/getData/",
success : function(data) {
//i am starting the spinner here ..
here i want to get the value from an android device ..as soon as i receive the value i want to stop the spinner
},
error : function() {
alert("error");
}
});
}, function()
{
});
};
我怎样才能做到这一点?