第一種實(shí)現(xiàn)(來源網(wǎng)上轉(zhuǎn)貼):
js 代碼
function Test() { var _data = ""; this.getString = function() { //設(shè)置成同步 DWREngine.setAsync(false); //調(diào)用Java類Test的getString方法,callBackFun為回調(diào)函數(shù) JTest.getString(function(data){_data = data;} //重新設(shè)置為異步方式 DWREngine.setAsync(true); return _data; } }
第二種實(shí)現(xiàn)(我在實(shí)際中的實(shí)現(xiàn)):
js 代碼
function Test() { var _data = ""; this.getString = function() { //調(diào)用Java類Test的getString方法,callBackFun為回調(diào)函數(shù) JTest.getString( { callback:function(data){_data = data;}, async:false } ); return _data; } }
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持武林網(wǎng)!
新聞熱點(diǎn)
疑難解答