如何在DWR中使回调函数同步。我不能使用promise和async / await。
DWR可以选择使用{async: false}。但是{asyn:false}已过时,不支持。
代码:-
/*DRW call*/
Remote.method(params, myCallbackmethod, {async:true});
alert('alert 2. I will run after myCallbackmethod'); /*alert 2*/
function myCallbackmethod(){
alert('alert One. In callback method'); /*alert 1*/
}
是否有可能先警报1再警报2。预先感谢