模板支持直接输出Request请求对象的方法参数,比如html页面点击搜索关键词的时候,使用<input type="text" name="keyword" value="{$Request.param.keyword}" >。用法如下:

$Request.方法名.参数

例如:

{$Request.get.id}
{$Request.param.name}

$Request.开头的变量输出会认为是系统Request请求对象的参数输出。

支持Request类的大部分方法,但只支持方法的第一个参数。

下面都是有效的输出:

// 调用Request对象的get方法 传入参数为id
{$Request.get.id}
// 调用Request对象的param方法 传入参数为name
{$Request.param.name}
// 调用Request对象的param方法 传入参数为user.nickname
{$Request.param.user.nickname}
// 调用Request对象的root方法 /public
{$Request.root}
// 调用Request对象的root方法,并且传入参数true http://127.0.0.1/public
{$Request.root.true}
// 调用Request对象的path方法  home/index/index	
{$Request.path}
// 调用Request对象的module方法 home
{$Request.module}
// 调用Request对象的controller方法  index
{$Request.controller}
// 调用Request对象的action方法 index
{$Request.action}
// 调用Request对象的ext方法 文件后缀  html
{$Request.ext}
// 调用Request对象的host方法  127.0.0.1
{$Request.host}
// 调用Request对象的ip方法
{$Request.ip}
// 调用Request对象的header方法
{$Request.header.accept-encoding}