致命错误:调用未定义的函数validation_errors()

发布于 2024-10-05 18:05:01 字数 309 浏览 2 评论 0原文

这是代码:

class CCI extends Controller {

 function CCI()
 {
  parent::Controller();
 }

 function index()
 {
   $this->load->helper('url');
  $this->load->view('Users/login');
 }

 function test()
 {
  echo "Testing Data";
 }
}

页面加载正常,直到我将“登录”页面的位置移动到“用户”文件夹内

Here is the code:

class CCI extends Controller {

 function CCI()
 {
  parent::Controller();
 }

 function index()
 {
   $this->load->helper('url');
  $this->load->view('Users/login');
 }

 function test()
 {
  echo "Testing Data";
 }
}

The page was loading fine until I moved the location of the "login" page inside of the "Users" folder

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲凉≈ 2024-10-12 18:05:01

那么可能会更改

$this->load->view('Users/login');

$this->load->view('login');

由于您将文件移到了 Users 文件夹中,因此您需要调整路径。

Well then probably change

$this->load->view('Users/login');

to

$this->load->view('login');

Since you moved the file inside the Users folder you need to adjust paths for that.

时光无声 2024-10-12 18:05:01

您可以使用“form_helper”中的“validation_errors”函数在视图中正确显示任何验证错误。也加载“form_helper”,你应该没问题。

You're properly displaying any validation errors within your view using the 'validation_errors' function that's located in the 'form_helper'. Load the 'form_helper' as well and you should be fine.

咆哮 2024-10-12 18:05:01

在控制器中添加以下两行代码:

$this->load->helper('form');
$this->load->library('form_validation');

Add following two lines of code to the controller:

$this->load->helper('form');
$this->load->library('form_validation');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文