如何管理组件值

时间:2015-12-26 12:31:16

标签: cfml

我正在学习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>

谢谢!

0 个答案:

没有答案