cfwheels 文档说,使用 hasManyRadioButton() 需要属性字段。但在他们的例子中,他们没有使用财产。
以下是cfwheels 文档提供的示例。
<!--- Show radio buttons for associating a default address with the current author --->
<cfloop query="addresses">
#hasManyRadioButton(
label=addresses.title,
objectName="author",
association="authorsDefaultAddresses",
keys="#author.key()#,#addresses.id#"
)#
</cfloop>
是否需要 property 属性?使用此功能的正确约定是什么?