create()) { $list = $Form->save(); if "/> create()) { $list = $Form->save(); if ">

thinkphp 更新数据解决办法

WBOY
Release: 2016-06-13 10:18:14
Original
963 people have browsed it

thinkphp 更新数据

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->    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();    }    
Copy after login


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

$Form =M("Release");
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!