cakephp行为验证

发布于 2024-11-07 22:22:49 字数 123 浏览 2 评论 0原文

我创建了一些上传文件的行为...... 我通过行为中的方法检查模型中的规则 - 它工作正常,但我必须检查文件是否已上传(php 函数:copy() 或 is_uploaded_file();),我想发送消息来查看此错误。 这怎么办?

I create some Behavior for uploading files...
I check rule in Model by methods in Behavior - it's works fine, but i must check is file uploaded (php function: copy() or is_uploaded_file();) and I would like send message to view about this error.
How do this?

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

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

发布评论

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

评论(1

我的影子我的梦 2024-11-14 22:22:50

在您的行为中,假设您将文件的路径作为“文件名”注入到记录中:

function beforeValidate() {
    if(!is_file_uploaded($this->data[$this->alias]['filename'])) {
        $this->invalidate('filename');
    }
    return true;
}

In your behavior, assuming that you inject the path to the file into the record as 'filename':

function beforeValidate() {
    if(!is_file_uploaded($this->data[$this->alias]['filename'])) {
        $this->invalidate('filename');
    }
    return true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文