lỗi xác thực biểu mẫu của tôi không hiển thị thông báo trong tệp xem khi tôi tải mô hình và nhận hàng từ bảng. đây là mã của tôi.thông báo lỗi xác thực biểu mẫu mã thông báo không hiển thị
$this->form_validation->set_rules('bookCategoryId', 'Book SubCategory Id', 'trim|required');
$this->form_validation->set_rules('bookSubCategoryId', 'Book SubCategory Id', 'trim|required');
$this->form_validation->set_rules('bookSubCategoryName', 'Book SubCategory Name', 'trim|required');
if ($this->form_validation->run() == FALSE) {
/* Load Model */
$this->load->model('book_category');
/* Get Categories */
$template_data['mainContentData']['book_categories'] = $this->book_category->get_all_categories();
/* set view page to be called */
$template_data['mainContent'] = 'admin_add_book_subcategory';
/* Load Template */
$this->template($template_data);
}
hình thức của tôi hoạt động tốt nếu tôi loại trừ hai dòng này
/* Load Model */
$this->load->model('book_category');
/* Get Categories */
$template_data['mainContentData']['book_categories'] = $this->book_category->get_all_categories();
hơn kiểm chứng thực của tôi cho thấy lỗi. Tôi không biết đâu là vấn đề?
tôi bao gồm cả và php echo form_error ('bookCategoryId'); ?> nhưng nó không hoạt động khi tôi bao gồm $ this-> load-> model ('book_category'); nếu không, nếu tôi loại trừ để tải mô hình nó hoạt động tốt. –
Vui lòng thay đổi liên kết không hoạt động. –
@ankitsuthar Liên kết được cập nhật, cảm ơn – Bora