如何检查控制器中的特定字段值

发布于 2024-12-21 20:48:47 字数 1194 浏览 0 评论 0原文

我有评论功能,评论表中有“状态”字段 ..我想检查这个特定字段值是否等于 0 或者不在控制器中......请有人帮助我更正此代码

   function admin_publish ($id = null){
                  if (!$id) {
                        // set flash message
                        $this->Session->setFlash('Invalid id for Location','default',
array('class' => 'flash_bad'));
                        // redirect
                        $this->redirect(array('action'=>'admin_index'));
                }else{
               // if comment status field 0
        if($comments['Comment']['status']== null){
                // change status from 0 to 1
             $this->Comment->saveField('status',1);
                        // set flash message
                        $this->Session->setFlash('The Comment was successfully
Published.');
                } else {
                     $this->Comment->saveField('status', 0);
                        // set flash message
                        $this->Session->setFlash('The Comment could not be NotPublished.');
                }

                // redirect
                $this->redirect(array('action'=>'admin_index'));
        }
        } 

i have comments function,i have "status" field in comments table
..i want to check this specific field value if it is equal to 0
or not in the controller..someone help me please to correct this code

   function admin_publish ($id = null){
                  if (!$id) {
                        // set flash message
                        $this->Session->setFlash('Invalid id for Location','default',
array('class' => 'flash_bad'));
                        // redirect
                        $this->redirect(array('action'=>'admin_index'));
                }else{
               // if comment status field 0
        if($comments['Comment']['status']== null){
                // change status from 0 to 1
             $this->Comment->saveField('status',1);
                        // set flash message
                        $this->Session->setFlash('The Comment was successfully
Published.');
                } else {
                     $this->Comment->saveField('status', 0);
                        // set flash message
                        $this->Session->setFlash('The Comment could not be NotPublished.');
                }

                // redirect
                $this->redirect(array('action'=>'admin_index'));
        }
        } 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十级心震 2024-12-28 20:48:48

尝试:

$commentData = $this->Comment->findById($commentId, "Comment.status");
$commentStatus = $commentData["Comment"]["Status"];
if(empty($commentStatus)) {
   //its zero
}
else {
  //its not zero
}

希望有帮助

Try:

$commentData = $this->Comment->findById($commentId, "Comment.status");
$commentStatus = $commentData["Comment"]["Status"];
if(empty($commentStatus)) {
   //its zero
}
else {
  //its not zero
}

Hope it helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文