在我的 android 应用程序中,我调用了一种从 html 页面到 java 页面的 javascript 方法。
this.start = function ()
{
try
{
Mynamespace.myapi.getvalue("myvalue", {
onSuccess: function (data)
{
value= JSON.parse(data);
alert("called");
},
onFailure: function (error) { }
});
}
catch (err) { }
if (value== null) { value= new Object();
};
在上面,在我的 java 类中调用了getvalue方法并返回了一些值,但是在获取 OnSuccess/OnFailure 内部的值之前,调用了下面的行。How to wait the method up to the callback is called?
if (value== null) { value= new Object();