我正在尝试使用以下内容创建新内容:
// Get suggestions template and update with values
$content = $this->app['storage']->getEmptyContent('suggestions');
$content->values['title'] = $title;
$content->values['description'] = $description;
// Save to db
$save = $this->app['storage']->saveContent($content);
status
设置为publish
从返回的数据中getEmptyContent
。
当我访问后端时,我可以看到保存状态为None
. 我如何才能真正创建它以便发布它?