Home> php教程> PHP开发> body text

thinkphp framework implements deletion and batch deletion

高洛峰
Release: 2016-12-21 16:52:18
Original
1437 people have browsed it

This article will give an example of how to use thinkphp to achieve data deletion and batch deletion.
Expected renderings:

thinkphp framework implements deletion and batch deletion

Forgive the blogger for processing the photos so carelessly. . .
Still split through MVC mode:
First is the view part:

用户名 真实姓名 手机号 邮箱 注册时间 操作 {$vo.username} {$vo.realname} {$vo.telphone} {$vo.email} {$vo.resgistertime} 修改 删除
Copy after login

Still uses the method of passing values from the form, but this time no verification is required because the data is directly processed rather than letting the user input data, so There is no need to worry about the illegality of the data because the model part is omitted. A more clever method adopted here is to define name as an array, and in the controller, you only need to judge whether the incoming id is an array, saving you the trouble of writing it separately.
The next part is the controller part

public function del(){ // $name = getActionName(); //作为公共的函数使用时添加 $adminUsersModel = D("adminUsers"); //获取当期模块的操作对象 $id = $_GET['id']; //判断id是数组还是一个数值 if(is_array($id)){ $where = 'id in('.implode(',',$id).')'; }else{ $where = 'id='.$id; } //dump($where); $list=$adminUsersModel->where($where)->delete(); if($list!==false) { $this->success("成功删除{$list}条!", U("Admin/User/lists")); }else{ $this->error('删除失败!'); } }
Copy after login

The above is the entire implementation process. I wonder if you guys have gotten this relatively clever method?

More thinkphp frameworks related to deletion and batch deletion Please pay attention to the PHP Chinese website for articles!

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 Recommendations
    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!