• Ubuntu使用——15(thinkphp路由报错Non-static method thinkRoute::get() should not be called statically)


    在route.php中添加代码:

    use thinkRoute;
    Route::get('/',function (){
        return 'hello world';
    });

    在浏览器中输入http://localhost/tp5-git/public/index.php,报错:

    [8192] ErrorException in route.php line 13
    Non-static method thinkRoute::get() should not be called statically
    // +----------------------------------------------------------------------
    // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
    // +----------------------------------------------------------------------
    // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
    // +----------------------------------------------------------------------
    // | Author: liu21st <liu21st@gmail.com>
    // +----------------------------------------------------------------------
    
    use thinkRoute;
    Route::get('/',function (){
        return 'hello world';
    });
    Route::get('think', function () {
        return 'hello,ThinkPHP5!';
    });
    
    Route::get('hello/:name', 'index/hello');
    
    return [

    解决方法是:注释掉“use thinkRoute;”即可。

    成功界面:

    思考:观察route.php中自带的代码,发现他们都没有“use thinkRoute;”,在网上搜索没有找到明确的解决方案,但仔细思考,可能就是“use thinkRoute;”的问题,注释掉果真成功了。

  • 相关阅读:
    附加作业
    我的个人总结
    进度更新
    结对编程——电梯调度
    程序阅读的改进
    WordCount
    阅读程序
    VS2013单元测试
    附加作业
    个人最终总结
  • 原文地址:https://www.cnblogs.com/wangjianupc/p/10587175.html
Copyright © 2020-2023  润新知