When you create CFCs, you create methods, which are ColdFusion user-defined functions, in the component page. You pass data to a method by using parameters. The method then performs the function and, if specified in the cfreturn tag, returns data.
You can also define variables in a CFC. Within a CFC, these variables are known as properties.
The following sections describe how to create CFCs:
The following table lists the tags that you use to create a CFC. You use these tags on the CFML page that defines the CFC.
Tag | Description |
---|---|
Contains a component definition; includes attributes for introspection. For more information, see Building ColdFusion components. |
|
Defines a component method (function); includes attributes for introspection. For more information, see Defining component methods. |
|
Defines a parameter (argument) to a method; includes attributes for introspection. For more information, see Defining and using method parameters. |
|
Defines variables for CFCs that provide web services; also use to document component properties. For more information, see The cfproperty tag. |
A CFC has the following characteristics:
function
statement can create simple methods, but it does not provide options to control access to the method, provide metadata, specify a return type, or control generated output.
cffunction
definitions. This code executes when the CFC is instantiated or whenever you invoke a method of the CFC.
You use the cfcomponent and cffunction tags to create ColdFusion components. By itself, the cffunction
tag does not provide functionality. The cfcomponent
tag provides an envelope that describes the functionality that you build in CFML and enclose in cffunction
tags. The following example shows the skeleton of a component with two methods:
<cfcomponent> <cffunction name="firstMethod"> <!--- CFML code for this method goes here. ---> </cffunction> <cffunction name="secondMethod"> <!--- CFML code for this method goes here. ---> </cffunction> </cfcomponent>
This section describes the following topics: