我想将数组传递给自定义标签。这可能吗?
我有一个arry arrayProd。在我的cfm中,我正在调用自定义标签:

<cf_cu_show_productcategories thename="#thename#" thenameprod="#thenameprod#" arrayProd="#arrayProd#">

自定义标签:
<cfparam name="attributes.thename" default="">
<cfparam name="attributes.thenameprod" default="">
<cfparam name="attributes.arrayProd" type="array" default="">

在自定义标记中使用此arrayProd会导致“变量ARRAYPROD undefined ”。

最佳答案

默认属性应为default="#[]#"

关于arrays - 在ColdFusion中,是否可以将数组传递给自定义标签?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58265590/

10-12 01:30