zoukankan      html  css  js  c++  java
  • 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;”的问题,注释掉果真成功了。

  • 相关阅读:
    [转]开发者最容易犯的13个JavaScript错误
    http状态码表
    RDLC报表部署到服务器的相关问题
    sharepoint权限集中管理工具
    依赖注入
    HttpModule & HttpHandle
    回滚事务
    HTTPMOUDLE 和httphandler 学习
    JavaScript操作Table
    .ne工具库
  • 原文地址:https://www.cnblogs.com/wangjianupc/p/10587175.html
Copyright © 2011-2022 走看看