分页查询里面:
select tt.type_name, tt.id as tag_type_id, t.* from tag_info t left join tag_type_relation r on t.id = r.tag_id left join tag_type tt on tt.id = r.tag_type_id order by id asc
表单提交时saveOrUpdate:
页面表单包括: tag_type_id 及tag_info 的model
执行saveOrUpdate时提示:
Caused by: com.jfinal.plugin.activerecord.ActiveRecordException: The attribute name does not exist: tag_type_id
因为model不含tag_type_id字段。
@JFinal,遇到这种情况有好的解决方案吗?