zoukankan      html  css  js  c++  java
  • Laravel

    The controller is existing, and the method 'test' exist on 'AppHttpControllersAdminIndexController'. But Laravel show me that there is no method on the controller, I don't know why. I have askd for help on the internet, but no one can help me. The error like pic1.

     Now I show you my project folder and the files.

     The namespace of the IndexController.php is right. And the method test is existed. But Laravel told me that Method does not exist... I don't know what happend!

    Maybe you have the same trouble, now, I will give you a way to solve the problem. Then, let's go.

    Look at this file.

     There is a backup file in my project. I had edited the controller file after created the backup file. So the content of the two files is different. Initially, there is no problem. but when i execute the command "composer update"... Oh, my god!

    Now, look at the directory vendor/composer, and open the file autoload_clappmap.php and autoload_static.php. Search IndexController in the two files.

    In autoload_classmap.php:

     In autoload_static.php:

     Look at the red box. The real file is not IndexController.php, but is the backup file. I have said, the two file is different. The method test does not on IndexController.bk.php. So Laravel show me the error.

    We have known why the problem happend. Now, we should solve it.

    1) Update the 'IndexController.bk.php' to 'IndexController.php' that in the autoload_classmap.php and autoload_static.php.

    2) Or you can delete the backup file or move it to other directory, then do 1).

    3) Or you can delete the backup file or move it to other directory. Then execute the command composer update. But it is slow...

    REPORT:

    Developing good programming habits can avoid many mistakes.

  • 相关阅读:
    MySQL 使用Anemometer基于pt-query-digest将慢查询可视化
    MySQL explain 中key_len的计算
    MySQL explain 详解
    Linux 误删libc.so.6
    Linux crontab 的格式及定义
    Azure容器监控部署(上)
    容器监控部署 -- 整体架构
    Prometheus 介绍
    zabbix自动停用与开启agent
    在jenkins中处理外部命令7z的异常
  • 原文地址:https://www.cnblogs.com/Super-Lee/p/11552641.html
Copyright © 2011-2022 走看看