创建Model模型
把"Home/Model"文件夹剪切到Application文件夹下,让Home和Admin共同使用。
第一种实例化模型的方法
第二种实例化模型的方法
第三种实例化模型的方法
在tp3.2以后,M()和D()是一样的,在3.2之前版本中
M()类似于是 new Model();
D('goods') 类似于 new GoodsModel():
提示:我们可以看到goods表的信息,在GoodsModel中没有写代码,所有的业务逻辑都是Model类来实现的。
对表的操作
增加:M('表名')->add($data);
Insert into 表() values(),()
删除:M('表名')->delete($id);
Delete from 表 where
更新:M('表名')->save($data);
Update 表 set 字段=值,字段=值 where
查询:M('表名')->select();
Select * from 表 where group by having order by limit
普通查询(显示所有的商品)
1、GoodsController中的代码如下:
2、在模板中循环取出goods/showlist.html
3、获取一条记录
条件查询
having和where的区别
区别一:
where后面跟的字段必须在数据表中有
having后面跟的字段必须在数据集中有
区别二:
select * from 表 where 条件 group by 分组 having 条件
动态查询
getby+字段名
聚合函数
数据添加
1、通过关联数组的方法添加
2、通过AR(active record)方式来添加
数据修改
1、通过关联数组的方法
2、通过AR(active record)方式
数据删除
直接执行SQL语句
修改模板的链接
showlist.html
add.html