博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maston总结
阅读量:4960 次
发布时间:2019-06-12

本文共 1378 字,大约阅读时间需要 4 分钟。

Substitution Tags(替换标签)

% $cd_count = 207; # this is embedded Perl  You have <% $cd_count %> CDs.

Escaping substitutions(转义替换), 两个字符 h(html),u(URL),n(不转义)

Homepage: 
 

Embedded Perl: % Lines and <%perl> Blocks (嵌入perl)

% foreach my $person (@people) {    Name: <% $person->{name} %>    Age: <% $person->{age} %>    Height: <% $person->{height} %>    Weight: <% $person->{weight} %>  % }

如果有多行则可以用<%perl> </%perl>

If you have more than a few lines of Perl code in a row, however, it is probably best to use a Perl block instead   <%perl>   my @words = $sentence =~ /\b(\S+)\b/g;   my @small_words = grep { length $_ <= 3 } @words;   my @big_words = grep { length $_ > 3 } @words;  
 

 

Calling Other Components: <& &> Tags   调用其它组件

调用组件 

<& /path/to/menu &><& $component &> <& menu, width => 640, admin => 1 &>

可以用+或者()表示为表达式运行

<& ( component_path_returner( ) ) &><& +component_path_returner( ) &>

<%init> blocks , 初始化块

It is currently <% $temp %> degrees.  <%init>   my ($temp) = $dbh->selectrow_array("SELECT temperature FROM current_weather");  

 

<%args> 

<%args>   $color   #是必需要传入数据的   $size => 20   @items => ( 1, 2, 'something else' )   %pairs => ( key1 => 1, key2 => 'value' )  

获取提交表单值 $ARGS{'submit.x'}

% foreach (sort %ARGS) {    <% $_ %>  % }    % foreach (sort @_) {    <% $_ %>  % }

可通过http传递获取参数

 

 

转载于:https://www.cnblogs.com/qinzb/p/9002956.html

你可能感兴趣的文章
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
C# 通知机制 IObserver<T> 和 IObservable<T>
查看>>
Code of Conduct by jsFoundation
查看>>
C#小练习ⅲ
查看>>
电源防反接保护电路
查看>>
arraylist
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
2124: 等差子序列 - BZOJ
查看>>
字符串匹配算法综述
查看>>
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>