Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将一些值传递给模板,然后打印模板。我怎样才能做到这一点?提前致谢。
据我了解,您想自动开始打印渲染的 gsp 页面。您不应该尝试从控制器执行此操作,控制器用于将参数传递给呈现为 HTML 的 .gsp 页面。
您可以通过将此 javascript 放入您的 gsp 文件中来自动启动打印机:
<script> $(document).ready(function(){ window.print(); }); </script>