我有一个项目执行 2 次 RPC 调用,然后将用户提供的数据保存在数据存储区中。第一个 RPC 调用工作正常,但从第二个开始我总是收到onFailure()
消息。如何确定onFailure()
触发的原因?我试过caught.getCause()
了,但它没有返回任何东西。
feedbackService.saveFeedback(email,studentName,usedTemplates,
new AsyncCallback<String>() {
public void onFailure(Throwable caught) {
// Show the RPC error message to the user
caught.getCause();
Window.alert("Failure!");
}
public void onSuccess(String result) {
Window.alert("Saved!");
}
});