Home  >  Article  >  Backend Development  >  thinkphp 更新数据,该如何处理

thinkphp 更新数据,该如何处理

WBOY
WBOYOriginal
2016-06-13 12:55:44910browse

thinkphp 更新数据

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


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

$Form =M("Release");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn