1.在mobile/app/resources/views下面创建页面文件夹(test),创建index.html页面访问文件

2.在mobile/app/Modules/下面创建同文件名文件夹(test/Controllers/IndexController.php)

<?php
namespace App\Modules\test\Controllers;
class IndexController extends \App\Modules\Base\Controllers\FrontendController
{
    public function __construct()
    {
        parent::__construct();
    }

    public function actionIndex() // 指向index.html文件
    {
        $data = $_GET;
        // var_dump($data);
        $this->assign('info', $data);
        $this->display();
    }

    public function actionSuccess()  // 指向index.html同级的success.html文件
    {
        $data = $_GET;
        $this->assign('res', $data);
        $this->display();
    }

    public function actionFail()  // 指向index.html同级的fail.html文件
    {
        $this->display();
    }
}
?>

http://HOST/mobile/index.php?m=test&a=success
http://HOST/mobile/index.php?m=test&a=fail
http://HOST/mobile/index.php?m=test
tip:可通过控制器指向不同页面,也可使用action函数指向不同页面

标签: ecshop, ectouch, mobile

阅读量:101