我需要顯示錶單以在顯示新聞故事的同一頁面上輸入博客文章。用戶正在輸入與故事相關的博客文章。如何訪問Symfony 1.4中顯示的表單中的相關對象
在我的博客的形式,我現在這樣做是爲了讓正在顯示的故事ID:
public function configure()
{
$this->setWidget('image_filename', new sfWidgetFormInputFileEditable(array(
'file_src' => '/uploads/blogpost_images/thumbnails/thumb_'.$this->getObject()->image_filename, //displayed for existing photos
'edit_mode' => !$this->isNew(),
'is_image' => true,
'with_delete' => false,
)));
$this->setValidator('image_filename', new sfValidatorFile(array(
'mime_types' => 'web_images',
'required' => $this->isNew(),
'path' => sfConfig::get('sf_upload_dir').'/blogpost_images',
'validated_file_class' => 'BlogPostValidatedFile',
)));
$this->setValidator('url', new sfValidatorUrl(array('required' => true)));
$this->setValidator('title', new sfValidatorString(array('required' => true)));
$this->setWidget('user_id', new sfWidgetFormInputHidden(array(),array(
'value'=>sfContext::getInstance()->getUser()->getId())
));
// get the request params to access the notice ID and pass it back to the form for
// saving with the blog post
$params = sfContext::getInstance()->getRequest()->getParameterHolder();
$this->setWidget('notice_id',
new sfWidgetFormInputHidden(array(),array(
'value'=>$params->get('id'))
));
$this->removeFields();
}
是否有這樣做的更清潔的方式?從請求參數中獲取通知(新聞報道)的id是很冒險的。
UPDATE
我是從一個模態對話框通過AJAX實際發佈形式,並試圖保持整個請求notice_id值。我結合我與形式參數返回它顯示的錯誤之前:
public function executeModal(sfWebRequest $request) {
if ($request->isXmlHttpRequest()) {
//return $this->renderText('test'.$request->getParameterHolder()->getAll());
$params = $request->getParameter('nb_blog_post');
$form = new nbBlogPostForm(null,array('notice_id',$request->getPostParameter('notice_id')));
$form->bind($params,$request->getFiles());
if ($form->isValid()) {
$nb_blog_post = $form->save();
$this->getUser()->setFlash('notice', 'Your blog post was successfully created');
$this->redirect('@noticeboard');
} else {
return $this->renderPartial('form',array('form'=>$form,'form_id'=>'blogpost'));
}
}
}
我似乎無法得到與形式(這是一個隱藏字段)的約束notice_id。其他值綁定罰款。
I've also tried $form = new nbBlogPostForm(null,array('notice_id',$request->getPostParameter('nb_blog_post[notice_id]')));
進一步更新
在第一次通過表格配置方法依賴於在請求中notice_id是,我認爲這是形式通過AJAX再次創建時將其設置爲空。這修復了它:
$params = sfContext::getInstance()->getRequest()->getParameterHolder();
if (($params->get('id'))) {
$this->setWidget('notice_id',
new sfWidgetFormInputHidden(array(),array(
'value'=>$params->get('id'))
));
} else {
$this->setWidget('notice_id',
new sfWidgetFormInputHidden());
}
如果有人有更清潔的方式請讓我知道。
感謝您的回覆 - 我已經更新了一些更多的信息。 – codecowboy 2011-05-21 06:32:42