0

使用自动 $scaffold 对我来说非常有用,但如果对于二进制列它会创建一个文件上传输入,那就更好了。有没有办法做到这一点?

4

1 回答 1

2

不是“开箱即用”。

您需要自定义视图以将文件输入/上传字段添加到表单中。 http://book.cakephp.org/2.0/en/controllers/scaffolding.html#customizing-scaffold-views

确保正确创建表单:http: //book.cakephp.org/2.0/en/core-libraries/helpers/form.html#options-for-create

您还可以使用一些流行的方法来处理文件上传。当然,如果您只想上传文件,只需几行代码,但如果您需要更多功能,最好使用现有解决方案之一。

https://github.com/josegonzalez/upload * 我的首选。很多功能。写得很好。

https://github.com/davidpersson/media

https://github.com/szajbus/uploadpack

https://github.com/milesj/cake-uploader

于 2012-10-13T13:45:09.180 回答