用于 Perl Web 开发的 ASP 风格标签?
我觉得问这个问题就像回到了 10 年前,但是...
是否有任何模块、补丁或 Perl 的任何“新”版本(在过去 10 年中发布)来支持编写面向 Web 的 Perl使用 ASP 样式标签的脚本?
例如来自 ASP/JSP
some html <% some code %> more HTML
例如来自 PHP
some html <? some code ?> more HTML
请不要担心“为什么”我问这个...它与编程语言研究有关。
I feel like I'm traveling 10 years back in time by asking this, but...
Are there any modules, patches, or any "new" version of Perl (released in the last 10 years) to enable writing web-oriented Perl scripts using ASP-style tags?
e.g. from ASP/JSP
some html <% some code %> more HTML
e.g. from PHP
some html <? some code ?> more HTML
Please don't worry about "why" I'm asking this... It's related to programming language research.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的。查看梅森。
您可以使用
cpan -i HTML::Mason
从 CPAN 安装它。还有 Template Toolkit,它可以更轻松地分离模板和逻辑代码,但允许很多相同的结构。
Yep. Check out Mason.
You can install it from CPAN with
cpan -i HTML::Mason
.There's also Template Toolkit, which makes it a bit easier to separate your template and logic code, but allows a lot of the same constructs.
Markup::Perl
让您非常接近 PHP /Perl 中的 ASP 风格编程。Markup::Perl
gets you pretty close to PHP/ASP style programming in Perl.Embperl 支持 ASP 样式标签。
Embperl does support ASP style tags.
有 Apache::ASP 和 Apache2::ASP
There's Apache::ASP and Apache2::ASP