<?php
namespace app\index\controller;
use think\Controller;
use think\View;
class Index extends Controller
{
public function index()
{
# 方法一:
$this->assign('key', 'value');
# 方法二:
$this->view->key2 = 'value2';
# 方法三:
View::share('key3', 'value3');
# 方法四:
return $this->fetch('index',[
'email' => '123456798@qq.com'
# 这四种方法在页面中同时能有效,也就是说在我们向模板中分配变量的时候同时可用,系统会将这四种方式传递的变量进行合并统一向页面中进行分配,这样我们就可以在页面上使用这些值。
]);
}
}
?>