thinkPHP问题记录
Posted l_____py
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkPHP问题记录相关的知识,希望对你有一定的参考价值。
- 路由组合变量问题
按照下面的顺序
http://localhost/tp5/public/hello-dfggfqw21321
变量name
会无法正确传递,但http://localhost/tp5/public/hello/dfggfqw21321
可以Route::get(‘hello/[:name]‘, ‘index/hello‘); Route::get(‘hello-<name>‘, ‘index/hello‘);
而按照下面的顺序则两种链接均可正确传值
Route::get(‘hello/[:name]‘, ‘index/hello‘); Route::get(‘hello-<name>‘, ‘index/hello‘);
- 路由后找不到模板文件
加上下面的语句会提示找不到模板,但是去掉
@
就好了,不知道加不加@
有什么区别Route::get(‘he‘, ‘@entry/ctrl/hell‘);
以上是关于thinkPHP问题记录的主要内容,如果未能解决你的问题,请参考以下文章