他化天 发表于 2015-8-18 18:24:17

'po.dicttable' doesn't exist 小bug

'po.dicttable' doesn't exist
我生成了个 一对多的表单,在测试功能里是可以正常使用的
可生成代码后,点击录入 就报这个错误,

仔细查看发现,我做的附表中 有select选择框 并设置 字典 关系,在生成的 xxxList.jsp文件中

<t:dictSelect field="fkCustomerId" type="list" dictTable="po.dictTable" dictField="id" dictText="name" defaultVal="${saleDetailPage.fkCustomerId}" hasLabel="false"title="客户收货人"></t:dictSelect>

po.dictTable 没有被设置的字典 的表名替换,需手动替换

<t:dictSelect field="fkCustomerId" type="list" dictTable="t_xx_customer" dictField="id" dictText="name" defaultVal="${saleDetailPage.fkCustomerId}" hasLabel="false"title="客户收货人"></t:dictSelect>   




页: [1]
查看完整版本: 'po.dicttable' doesn't exist 小bug