编辑:
我从 Dropbox 选择器中获取 JSON 结果,但它们没有被正确解析以放入数据库中。我不知道我做错了什么,如果我应该在我的控制器中做一个 JSON 解码器,或者它是否是其他东西。
控制器代码:
<?php class DropboxfilesController extends AppController {
public function add() {
if ($this->request->is('post')) {
$this->File->create();
if ($this->File->save($this->request->data)) {
$this->Session->setFlash(__('Your file is now available :)'));
$this->redirect($this->referer());
} else {
$this->Session->setFlash(__('Something went wrong!'));
}
}
}}?>
查看代码:
<?php echo $this->Form->create('File'); ?>
<input type="Dropboxfilechooser" name="selected-file" style="visibility: hidden;"/>
<?php echo $this->Form->end('Finish'); ?>
型号代码:
<?php class File extends AppModel {}?>