用于 Perl Web 开发的 ASP 风格标签?

发布于 2024-08-27 23:02:33 字数 299 浏览 9 评论 0原文

我觉得问这个问题就像回到了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

乖不如嘢 2024-09-03 23:02:33

是的。查看梅森

您可以使用 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.

落墨 2024-09-03 23:02:33

Markup::Perl 让您非常接近 PHP /Perl 中的 ASP 风格编程。

  # don't write this...
  print "Content-type: text/html;\n\n";
  print "<html>\n<body>\n";
  print "<p>\nYour \"lucky number\" is\n";
  print "<i>", int rand 10, "</i>\n</p>\n";
  print "</body>\n</html>\n";

  # write this instead...
  use Markup::Perl;
  <html>
  <body>
  <p>
  Your "lucky number" is
  <i><perl> print int rand 10 </perl></i>
  </p>
  </body>
  </html>

Markup::Perl gets you pretty close to PHP/ASP style programming in Perl.

  # don't write this...
  print "Content-type: text/html;\n\n";
  print "<html>\n<body>\n";
  print "<p>\nYour \"lucky number\" is\n";
  print "<i>", int rand 10, "</i>\n</p>\n";
  print "</body>\n</html>\n";

  # write this instead...
  use Markup::Perl;
  <html>
  <body>
  <p>
  Your "lucky number" is
  <i><perl> print int rand 10 </perl></i>
  </p>
  </body>
  </html>
吻安 2024-09-03 23:02:33

Embperl 支持 ASP 样式标签。

Embperl does support ASP style tags.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文