Restler3- POST上传(zip)文件

时间:2013-07-22 17:42:30

标签: post file-upload readonly

我真的很喜欢Restler3,但现在有一个问题。 我想将ZIP文件发布到服务器。只需一个简单的HTML表单。 如果必须添加

,则启用上传
$restler->setSupportedFormats('UploadFormat');

但是,如果这样做,所有JSON-GET-Requests都无效。

Fatal error:  Uncaught exception 'Luracast\Restler\RestException' with message 'UploadFormat is read only…

这是错误信息。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:0)

我也有这个问题。将我的代码更改为此工作:

$r->setSupportedFormats('UploadFormat','JsonFormat');