文档模板:JavaScript 可以替代 Word?
我们目前使用 Word 进行邮件合并(标签)和个性化贺卡(文本中的联系人姓名)。
由于我们的联系信息存储在 Web 平台 (SharePoint) 上,因此我正在考虑用基于 Web 的模板替换 Word 模板。这个想法是使用像 Mustache 这样的 JavaScript 模板引擎来生成 html 文档。或者另一种方法是使用 XSLT。
这已经完成了吗? Web 模板与 Word 相比有何优缺点?
We currently use Word for mail merge (labels) and personalized greeting cards (contact name in the text).
Because our contact information is stored on a Web platform (SharePoint), I was thinking about replacing the Word templates with Web-based templates. The idea would be to use a JavaScript templating engine like Mustache to generate the html documents. Or another approach would be to use XSLT.
Has this been done already? What would be the pros and cons of Web templating vs. Word?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于我们来说,使用以开放文档格式存储的模板非常有用。然后,我们解析包含的脚本标签 (text:script) 来构建内容和样式的 XSL 样式表。
数据存储在 Postgres 数据库中,由数据库直接格式化为 XML< /a>.当使用 XSL 样式表转换 XML 时,ODF 文档的内容将成为结果。
然后使用 LibreOffice 处理这些生成的 ODF 文档,以生成各种输出格式。
此工作流程的优点是:
缺点是:
您需要注意,此设置旨在与服务器一起使用以生成报告,因此设置复杂最初。
我反对使用 HTML 和 JavaScript 来生成报告,因为 HTML 不适合打印布局。相反,只需使用 Web 应用程序输入数据并触发报告生成,其设置类似于上述设置。
如果您的目标是获得更好的效果,那么还可能值得研究从 XSL 而不是 ODF 生成 LaTeX 文件布局。
For us it proved quite useful to use Templates stored in the Open Document Format. We then parse the contained script tags (text:script) to build XSL stylesheets for content and styles.
The data is stored in a Postgres database and formatted as XML directly by the database. When the XML is transformed using the XSL stylesheets, the contents of the ODF documents will be the result.
Those generated ODF documents are then processed with LibreOffice to generate a wide range of output formats.
The pros from this workflow are:
The cons are:
You need to be aware that this setup is intended to be used with a server for report generation and therefore complex to setup initially.
I would argue against using HTML and JavaScripts to generate reports due to HTML not being suitable for printed layouts. Instead just use a web application entering data and triggering report generation with a setup similar to the one described above.
It might also be worth investigating the production of LaTeX files from XSL instead of ODF if you are aiming for superior layout.