lj920
2018-07-09 14:51
fetch的使用为什么要注释掉_construct()魔术方法才可以使用?
为什么在HTML页面中注释掉{email},页面还是可以读取到并报错?为什么必须删掉才可以,注释掉却不行?
fetch中的STATIC不再报错,但是STATIC的值并没有输出出来。
可以使用__construct,但你需要引用父类Controller下的__construct,同时use think\Request;
use think\Controller; use think\Request; class Index extends Controller{ public function __construct(Request $request) { parent::__construct($request);
第一个问题我也想问,第二个问题上一位已经解答了,第三个问题我也遇到了,把html文件中的p标签中的STATIC删掉重新打一遍就好了,我也不知道为啥。。。
<!-- 这种注释 对于think来说 并不是注释
快速入门ThinkPHP 5.0--基础篇
58655 学习 · 495 问题
相似问题