jquery ajax如何接收并处理LIST里的数据
发布网友
发布时间:2022-04-22 21:39
我来回答
共3个回答
热心网友
时间:2022-04-22 23:09
建立把list 序列化成json数据 让后接收的时候 选择json数据接收
热心网友
时间:2022-04-23 00:27
哥们 ajax返回的数据是以流的形式接收的
Action里
HttpServletResponse res = ServletActionContext.getResponse();
res.setCharacterEncoding("utf-8");
res.setContentType("text/json");
res.getWriter.write();这里输出json
return null
xml里边
<package name="cjwajax" extends="json-default">
<action name="perandrole1" class="com.wance.Action.PerAndRoleAction_cjw"
method="find_staffname">
</action>
</package>
就OK了
热心网友
时间:2022-04-23 02:01
用 json