1

我需要知道如何从不提交表单的按钮调用 Struts2 操作。当我单击该按钮时,它应该调用一个 Struts2 操作,该操作将对 SSRS 服务器(SQL Server Reporting Services)进行 Web 服务调用。服务器将报告发送到我放入响应的流中。然后它会显示一个弹出窗口来下载 PDF 文件。使用 JSF 很简单,commandButton 提供了一个“action”属性。我想要这样的等价物:

<h:commandButton id="editButton" value="Edit" action="#{myBean.edit}" />

public class MyBean { public String edit() call web service, put the stream on the response return "OK"}}

在 Struts2 中如何?阿贾沙?查询?道场?我是 Struts2 和 Ajax 的新手,我做了很多 JSF。

谢谢你

4

2 回答 2

3

如果不提交表单,您将需要AJAX.

但是由于您只需要下载 PDF,因此只需对返回Stream Result的 Action 执行 GET 调用(并且不会更改当前页面)。

Read more here

指定contentDisposition: attachment,您将询问用户在哪里下载文件(或使用哪个应用程序打开它),同时contentDisposition: inline会在浏览器中打开它,更改页面(这不是您想要的)。

然后在 url 中指定动作并使用它的锚标记

<s:url action="downloadAction.action" var="url">
    <s:param name="param1">value1</s:param>
</s:url>
<s:a href="%{url}" >download</s:a>

在 Struts.xml 中

<result name="success" type="stream">
   <param name="contentType">application/pdf</param>
   <param name="contentDisposition">attachment;filename="yourPDF.pdf"</param>
</result>

在 Action 中,您需要(通过 getter)提供一个InputStream被调用的inputStream.

编辑

如果你想通过一个按钮来做,就像你在评论中问的那样:

<input  type = "button" 
       value = "download" 
     onclick = "javascript:location.href='downloadAction.action';"
/>
于 2013-09-25T08:33:29.293 回答
0

在 dojo 中,您可以创建 iframe 并通过 ajax 调用报告服务以获取 pdf 文件名,然后在 ifrmae 中下载此 pdf 文件:

    var reportCP = new dijit.layout.ContentPane({
        content: dojo.create("iframe")
    });   

    new dijit.Button({
        label: "Report",
        onClick: function(){

            dojo.request.post(yourServiceUrl, {
                data : yourData,
                handleAs: "json"
            }).then( 
                function(response){
                    reportCP.content.src=response.fileName;   
                },
                function(error){
                    alert(error);
                }
            );
        }
    });  

或者您可以使用 window.open 将 pdf 流直接下载到新窗口中,例如:

new dijit.Button({
    label: "Report",
    onClick: function(){
        window.open(yourReportServiceUrl,"","height=600, width=1000, scrollbars=1");
    }
});  
于 2013-09-24T18:09:14.100 回答