父组件的示例 init 方法
<cffunction name="init" output="false" access="public" returntype="NavigationBase">
<cfset this.index = 0 />
<cfset this.length = 0 />
<cfset this.current = "" />
<cfreturn this />
</cffunction>
.
.
.
子组件示例代码
<cfcomponent displayname="Navigation" output="false" extends="NavigationBase">
<cffunction name="init" output="false" access="public" returntype="Navigation">
<cfreturn this/>
</cffunction>
.
.
如果我实例化子组件,则在父组件的 init 函数中定义的变量始终未定义。我在这里做错了什么?
谢谢