var callback = dojo.lang.hitch(this, this.getCallbackReview); //This is used to call callback funstion after line2
this.service.ReviewManager.getReview(callback, path, ItemPath, true); //use to call java method which returns Pojo
//This is callback function
getCallbackReview: function(info, error) {
if(error) {
alert(error); //in case of any error from the java method
return;
}
alert(info); //If no error thrown from Java Method
},
二是不扔任何錯誤,並返回正確的信息,但如果這些信息有clob
場然後給我的錯誤爲未定義。錯誤是不確定何時回調函數不引發錯誤
要麼它會'java'或'javascript' – Ravi
這是不是Java。 – Guy
我可以得到這方面的幫助嗎? – Requester