前面,我们讲了 Output 类和JSON基本示例接口的实现。这一章来讲一讲H5接口的实现。
「PHP开发APP接口实战004」响应参数基础说明
「PHP开发APP接口实战005」基础示例接口的实现一
「PHP开发APP接口实战006」基础示例接口的实现二
H5接口,其实就是一个H5网页。只是在我们以返回JSON数据为主的接口项目中,显特有点特殊。但还是采用 Phalcon\Mvc\View
来实现的。 参数资料: Phalcon 使用视图
- 在
/app/views/
目录下创建主布局模板文件index.phtml
, 并添加以下代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>This is main layout!</h1>
<?php echo $this->getContent(); ?>
</body>
</html>
注意方法
$this->getContent()
被调用的这行。这种方法指示 Phalcon\Mvc\View 在这里注入前面视图层次结构执行的内容。
- 在
/app/views/layouts/
目录下创建index
控制器相关的视图布局模板文件index.phtml
, 并添加以下代码:
<h2>This is the "index" controller layout!</h2>
<?php echo $this->getContent(); ?>
它只会在
index
控制器内每个动作执行时显示。这个控制器的所有动作将重用这个布局的全部代码。
- 在
/app/views/index/
目录下创建模板文件h5.phtml
, 并添加以下代码:
<h3>This is show view!</h3>
<p>I have received the parameter <?php echo $data; ?></p>
注意:
$data
是通过控制器传递过来的参数,可以是字符串、数组 、对像等PHP支持的数据类型。请根据实际需要设置。$data
是在Output
类中统一定义的参数名称,以方便在模板中调用。
- 在
/app/controllers/IndexController.php
中添加函数h5Action()
, 实现返回H5页面接口示例。接口地址: http://127.0.0.1:20081/index/h5
public function h5Action()
{
$param = '测试参数';
Output::instance($this->response)->setView($this->view)->h5($param);
}
接口返回结果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>This is main layout!</h1>
<h2>This is the "index" controller layout!</h2>
<h3>This is show view!</h3>
<p>I have received the parameter 测试参数</p>
</body>
</html>
以上,我们就已经讲完了在接口开发中,几种常遇到的数据类型输出方法。下一章,将讲解接口日常安全防范方法。