转自 http://blog.sina.com.cn/s/blog_907043b30102wysx.html
网上有不少也比较详细的文章,但还是有一些注意点的,现在记录下来
有两个表
customer 字段有 id, cus_name, customer_group__id
customergroup 字段有 id,cus_group_name
customer.customer_group__id和customergroup.id 是外键关系
1)gii生成model和crud 操作
注意:表名和model名要相同!
2)在models/Customer.php 加上关联
2)在views/customer/index.php上加上 字段显示
3)现在应该可以显示,现在要加上搜索功能,在models/CustomerSearch.php
1>加上要查询的字段
2> 在 rules上加上safe。
3>在search 加joinWith, 优化表查询,循环sql查询->一条sql查询
4>在下面$query加上条件查询
4)加上排序,在$dataProvider下面加 setSort方法,默认是没有的,加上等于重写了,所以要加上原来的id,
和cus_name上去才能正常显示
网友评论