我的页面中有两个选择列表,Region
并且Country
.
Country
应根据从Region
列表中选择的值显示值。但问题是,它在Country
列表中显示为空白,即使在从Region
列表中选择了一个值之后也是如此。
Region table Country table
Id Group_Id
Name Name
Id
对于Region
,我编写了如下查询:
Select Name d,Id r from Regions
Country 的查询为:
Select Name d,Id r from Country where Group_Id = :P3_REGION
如何获得正确的值?