浏览文章
文章信息
Magento2.3 Invalid security or form key. Please refresh the page.
15618
多种原因:
1、di.xml文件中定义的类未编译;
2、路由所在类动作存在错误,不可跳过性错误。
总体尝试解决:
首先考虑编译错误,执行:bin/magento setup:di:compile
编译时一般存在类路径错误就会提示,逐一解决。
其次考虑代码错误,可以加入日志记录的方式或者Aiweline_Core模块的全局函数断点打印(将模块下的common下的function.php 引入pub/index.php)。
<?php
/**
* Public alias for the application entry point
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
use Magento\Framework\App\Bootstrap;
use Magento\Framework\App\Filesystem\DirectoryList;
//AiWeline引入调试
require __DIR__.'/../app/code/Mjd/Core/common/function.php';
......