我试图从jQuery调用struts1.3动作。
我试过这个:
$.get("/samplAction.do",function(response){
//some code
});
但是没有调用该动作。我做错了什么?
答案 0 :(得分:0)
withou“/”怎么样?因为我这样做: 具有
$.post("add.do", $(this).serialize(), function(response){
//code
});
我的struts-config有这个:
<action path="/something/add"
type="com.xxxx.yyyy.zzzz"
parameter="add"
name="aForm"
scope="request"
input="major.page">
</action>