ThinkPHP添加更新标签的方法(2)

public  function update() { 
$Blog=D('Blog'); 
$vo=$Blog->create(); 
$this->updateTag($vo,'Blog');//更新前调用 
if (false === $vo) { 
 $this->error($Blog->getError()); 
     } 
   // 更新数据 
   $list = $Blog->save(); 
   if (false !== $list) { 
     //print_r($list); 
      
     $this->success('编辑成功!'); 
   } else { 
       //错误提示 
       $this->error('编辑失败!'); 
   } 
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/90147c8738b5872fed184ac3d7564763.html