我需要在點擊按鈕的基礎上開發導出功能,以便將查看的HTML頁面導出到word文檔中。掛毯導出功能4
我已經在JSP/Java中實現了相同的功能(下面是代碼),但是 無法在Tapestry中開發相同。
能否請你幫我,讓我可以開發相同的功能在 掛毯4
<body>
<%
String exportToWord;
exportToWord = request.getParameter("exportToWord");
if (exportToWord != null && exportToWord.toString().equalsIgnoreCase("YES")){
response.setContentType("application/vnd.ms-word");
response.setHeader("Content-Disposition", "inline;
filename="+"word.doc");}
%>
This is the plain text.<p><i>This is the italic text. </i>
<p><b>This is the old text. </b>
<p><s>This is the strike text.</s>
<p><font color="green">This is he color text. </font>
<p><a href="#">This is hyperlink. </a>
<p><%if exportToWord == null) {%><a href="word.jsp?exportToWord=YES">Export to word</a>
<%}%>
</body>
</html>
如果你正在使用Tapestry 5,那麼你按照下面的鏈接,因爲在我們的項目中我們使用的是舊版本。 https://stackoverflow.com/questions/29520097/file-download-link-in-tapestry –
yeehaaah牛仔!這是一些非常黑客的JSP! –