我正在学习Coldfusion组件,我有一个名为Page.cfc
的组件,在调用函数时存储本地值的常用做法是什么?也就是说,如果函数返回值,或者更好地将值存储在对象中,那么以后要访问它,如:
<cfcomponent>
<cffunction name="upcase">
<cfset this.name = ucase(this.name)>
<cfreturn>
</cffunction>
<cffunction name="upcase">
<cfargument name="what">
<cfreturn ucase(arguments.word)>
</cffunction>
</cfcomponent>
谢谢!