Open pdf file in new window from variable path name in GSP page

泪湿孤枕 提交于 2019-11-26 18:37:47

问题


I have a map named file I'm receiving from my controller which contains the path and description of a file stored in assets/myfiles/file.pdf the following format:

{"filepath": "file.pdf",
"description": "something"}

How do I create a link to this pdf in a GSP page I'm rendering?

<a href="${resource(dir: 'myfiles', file:' ${file[filename])' }" target="_blank">${file[description]}</a>

I tried the above but it doesn't open the pdf but just another cloned tab of the app


回答1:


Create Controller Method And Write A Connection To Download Your File.

GSP:
Write the Button And Create A link To this Controller Action In Your GSP like below.

<g:link class="btn btn-info btn-sm" 
      action="downloadMyFile" resource="${instance}" 
                           target="_blank">DOWNLOAD FILE</g:link>

Controller:

        // This is Used To Open PDF File. 
        def downloadMyFile(){
            def file = new File("download/path/to/your/file")
            response.setContentType("application/pdf")
            response.setHeader("Content-disposition", "filename=${file.getName()}")
            response.outputStream << file.newInputStream()     
        }

[OR]

        // This is Simply Download Your File.  
        def downloadFile(){
             def file = new File("Path/to/your/File")
             response.setContentType("application/octet-stream")
             response.setHeader("Content-disposition", "filename=${file.getName()}")
             response.outputStream << file.newInputStream()  
        }

Note:

resource : You can pass Instance to your download action.
target="_blank" : Open/Download File In New Tab.
action : Action name that is defined in Controller.



来源:https://stackoverflow.com/questions/39536317/open-pdf-file-in-new-window-from-variable-path-name-in-gsp-page

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!