Configuration
member()
Signature
Section titled “Signature”member() — returns struct
Available in: mapper
Category: Routing
Description
Section titled “Description”Scope routes within a nested resource which require use of the primary key as part of the URL pattern; A member route will require an ID, because it acts on a member. photos/1/preview is an example of a member route, because it acts on (and displays) a single object.
Examples
Section titled “Examples”<cfscript>
mapper()
// Create a route like `photos/1/preview`
.resources(name="photos", nested=true)
.member()
.get("preview")
.end()
.end()
.end();
</cfscript>