Heim  >  Artikel  >  Backend-Entwicklung  >  thinkphp模板传值

thinkphp模板传值

WBOY
WBOYOriginal
2016-06-23 13:46:591265Durchsuche


这个是 站点设置的代码 public function site(){        $site = M("site");        $list = $site->select();        $this->assign("list",$list);        $this->display(); } public function update(){ $site   =   M("site");    if($site->create()) {        $result =   $site->save();        if($result) {            $this->success('操作成功!');        }else{            $this->error('写入错误!');        }    }else{        $this->error($Form->getError());    } } 这是邮箱设置的代码  这里开始出错了 不能使用同一个模板....... public function email(){        $site = M("email");        $email = $site->select();        $this->assign("email",$email);        $this->display(); } public function email_update(){ $email   =   M("email");    if($email->create()){        $result =   $email->save();        if($result) {            $this->success('操作成功!');        }else{            $this->error('写入错误!');        }    } }


回复讨论(解决方案)

display里面没写东西


这个是 站点设置的代码 public function site(){        $site = M("site");        $list = $site->select();        $this->assign("list",$list);        $this->display(); } public function update(){ $site   =   M("site");    if($site->create()) {        $result =   $site->save();        if($result) {            $this->success('操作成功!');        }else{            $this->error('写入错误!');        }    }else{        $this->error($Form->getError());    } } 这是邮箱设置的代码  这里开始出错了 不能使用同一个模板....... public function email(){        $site = M("email");        $email = $site->select();        $this->assign("email",$email);        $this->display(); } public function email_update(){ $email   =   M("email");    if($email->create()){        $result =   $email->save();        if($result) {            $this->success('操作成功!');        }else{            $this->error('写入错误!');        }    } }



       $this->display();  使用的模板是一个  也就是  一个html里面有三个form  但是 第一个form得到了 数据  剩下的2个得不到了....

你的模板代码贴出来看看,邮箱设置那段

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:求问超级简单的数据表查询怎么写?Nächster Artikel:php 正则