精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2008-09-06
我自己写了一个导出xls的方法
需要得到过滤条件 你的load方法会自动把所有条件都传到后台 我自己应该怎么拼这些条件呢? |
|
返回顶楼 | |
发表时间:2008-09-07
请问如何输出调试信息
比如我要做一个更新操作 saveURL=update.php, (后台是php处理) 我要在update.php文件中如何查看接收到的json参数 为什么我在update.php 这个文件中echo 出来没有任何反应 |
|
返回顶楼 | |
发表时间:2008-09-07
supercwg 写道 我现在使用的是springside的struts2,如何在在Action里面输出json串来呈现数据啊?能够提供具体的配置过程吗?如果springside能够与gtgrid集成,那就真是强强联合啊,请不吝赐教啊
<action name="customerList" class="customerAction" method="customerList"> <result name="json" type="stream"> <param name="inputName">inputStream</param> <param name="contentType">text/xml;charset=utf-8</param> <param name="contentDisposition">inline</param> <param name="bufferSize">2048</param> </result> </action> //上面在struts.xml 里配置。 //action 里: private InputStream inputStream; public String customerList{ StringBuffer outStringBuffer=new StringBuffer(); this.outStringBuffer.append("{data:[{ no : 3 , name :'ccc', age : 13, gender : 'F' , english : 53 , math :62 } "); this.outStringBuffer.append("]"); this.outStringBuffer.append("}"); this.inputStream=new ByteArrayInputStream(outStringBuffer.toString().getBytes("utf-8")); System.out.println(outStringBuffer.toString()); return "json"; } public InputStream getInputStream() { return inputStream; } public void setInputStream(InputStream inputStream) { this.inputStream = inputStream; } 格式就不调 了。。。。。将就看一下吧 |
|
返回顶楼 | |