在看webwork2自带的showcase中的dwr的例子中,遇到这样的一个问题:
JSP页面上有这样的代码
dojo.event.connect(dojo.byId("wordListButton"), "onclick", function() {
dwraction.execute(
{
action: 'wordList',
namespace: '/webwork_dwr',
executeResult: true
},
{},
function(ajaxResult) {
dojo.byId("wordList").innerHTML = ajaxResult.text;
}
);
});
通过其配置文件xwork-dwr.xml找到了它对应的类:WordListAction
/webwork_dwr/wordList.jsp
下面是WordListAction的内容:
public class WordListAction extends ActionSupport {
public List getAllWords() {
return WordList.getInstance().getAllWords();
}
public String execute() throws Exception {
return SUCCESS;
}
}
到此我有两个疑问:第一个问题是经过我的程序跟踪,它会调用WordListAction中的getAllWords与execute(),程序是怎么调用到getAllWords这个方法的?
第二个问题是它的结果JSP页面中是这样的代码:
/ww:iterator
这里的%{allWords}与%{#currentWord}是怎么得到数据的?类程序里面也没有定义这样的变量。
[b]问题补充:[/b]
Quake Wang 兄说到:getAllWords方法是被JSP页面中的%{allWords}调用到的,
那再请问一下:JSP中是如何调用到getAllWords这个方法的,在哪有啥定义吗?