如何将表单验证与文件上传器结合使用以确保文件已上传

发布于 2024-12-09 16:16:18 字数 283 浏览 0 评论 0原文

任何人都可以建议如何使用表单验证规则,我可以说以下内容:-

如果没有上传文件-则使用表单验证器库创建一个规则来表示“没有上传文件”。

我正在使用 CodeIgniter 2。

例如 - 使用以下内容在文本输入字段上进行验证很简单,但我无法理解这是如何通过上传(使用 $_FILES 数组而不是 $_POST)来完成的,

例如。 $this->form_validation->set_rules('标题', '标题', '必需'); // 名为“title”的输入字段是必需的

Can anyone suggest how using the form validation rules I can say the following:-

If no file is uploaded - then create a rule to say 'no file uploaded' using the form validator library.

I am using CodeIgniter 2.

For instance - it is simple to validate on a text input field using the following, but I cannot understand how this is done with upload (that uses the $_FILES array rather than $_POST)

eg.
$this->form_validation->set_rules('title', 'Title', 'required'); // input field named 'title' is required

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

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

发布评论

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

评论(1

你列表最软的妹 2024-12-16 16:16:18

CodeIgniter 的File Uploading 类处理自己的验证 - 无需使用Form Validation 类。

根据文档

$this->upload->display_errors()

<小时>
如果 do_upload() 函数返回,则检索任何错误消息
错误的。该函数不会自动echo,而是返回数据
因此您可以根据需要分配它。

在上面的示例中,如果文件输入留空,$this->upload->display_errors() 将返回以下内容:

您没有选择要上传的文件。

因此,请设置您的首选项(请参阅文档的“设置首选项”部分,了解具体内容可用):

// The following are just examples from the documentation...
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
// ... other preferences as necessary

如果在尝试上传期间上述任何操作失败,$this->upload->display_errors() 将检索相应的错误消息。只需将其传递到您的视图即可显示错误。

希望有帮助。

CodeIgniter's File Uploading class handles its own validation - no need to use the Form Validation class.

Per the documentation,

$this->upload->display_errors()


Retrieves any error messages if the do_upload() function returned
false. The function does not echo automatically, it returns the data
so you can assign it however you need.

In your example above, if the file input is left empty, $this->upload->display_errors() will return the following:

You did not select a file to upload.

So, set your preferences (see the "Setting Preferences" section of the documentation for exactly what is available):

// The following are just examples from the documentation...
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
// ... other preferences as necessary

If any of the above fail during the attempted upload, $this->upload->display_errors() will retrieve the appropriate error message. Simply pass it to your view to display the error(s).

Hope that helps.

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