在struts.xml中使用result type="json" 如何在ajax中获得值

J2EE 码拜 10年前 (2015-04-04) 1033次浏览 0个评论

从来没用过struts配置文件中返回类型是json的

<action name="listProduct" class="createGiftQueryAction" method="listProduct">
	<result type="json">
		<param name="root">productList</param>
	</result>
	<result type="json" name="noProduct">
		<param name="errMsg">errMsg</param>
	</result>
	<result type="json" name="noUserId">
	         <param name="errMsg">errMsg</param>
	</result>
</action>

我现在在action中有一个字符串private String errorMsg=”错误”,如何能在页面ajax中获得这个字符串的值呢?struts配置文件,包括action要怎么写呀?谢谢大神赐教!

在struts.xml中使用result type="json" 如何在ajax中获得值
20分
参考下,原理是一样的
http://blog.csdn.net/jationxiaozi/article/details/6827764/

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明在struts.xml中使用result type="json" 如何在ajax中获得值
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!