這裏是我的struts.xml
沒有結果的行動<class>定義,並導致輸入
<package name="ajax" extends="json-default" >
<action name="loadcity" method="loadcity" class="roseindia.action.user.RegisterUser" >
<result type="json" />
</action>
</package>
當我打電話loadcity.action
我收到以下錯誤
No result defined for action roseindia.action.user.RegisterUser and result input
這裏是我的操作方法:
public String loadcity()
{
country=request.getParameter("country");
cityList= dao.loadcity(country);
return ActionSupport.SUCCESS;
}
對JSON插件不要求..... – user1773207 2013-02-27 18:18:20
可您嘗試命名該結果爲「輸入」?順便說一句 – 2013-02-27 18:22:30
... @ user1773207這個調用是否有任何驗證?可能它在某個時候失敗... – 2013-02-27 18:24:42