create()){ $list=$Form->save(); if($list!==false){ $this->success('数据更新成功!'); }else{ $this->error("没有更新任"/>
PHP头条
热点:

thinkphp更新数据,该如何处理


thinkphp 更新数据
    public function edit() {
        $Form =M("release");
        if ($vo = $Form->create()) {
            $list = $Form->save();
            if ($list !== false) {
                $this->success('数据更新成功!');
            } else {
                $this->error("没有更新任何数据!");
            }
        } else {
            $this->error($Form->getError());
        }
$this->assign('Form',$Form);
dump($Form);
$this->display();
}

------解决方案--------------------
应该是路径有错误,找不到类中的方法
------解决方案--------------------
看看你的Model类的自动完成功能部分,$Form =M("release");还有这一句,里面要大写的吧。

$Form =M("Release");

www.phpzy.comtrue/phprm/14645.htmlTechArticlethinkphp更新数据,该如何处理 thinkphp 更新数据 publicfunctionedit(){ $Form=M("release"); if($vo=$Form->create()){ $list=$Form->save(); if($list!==false){ $this->success('数据更新成功!'); }else{ $this->error("没有更新任...

相关文章

相关频道:

PHP之友评论

今天推荐