最終更新日 :
2021年4月28日
説明
カスタムレスポンスを設定します。
履歴
ColdFusion 10: この関数が追加されました。
シンタックス
restSetResponse(response)
パラメーター
パラメーター |
説明 |
---|---|
response |
レスポンスの詳細が含まれる構造体です。 |
警告
注意:ColdFusion は、関数の戻り値を無視し、RestSetResponse() 関数によって設定されるレスポンスを使用します。 |
例
<cffunction name="create" httpMethod="POST" produces="application/xml"> <cfargument name="id" type="numeric"> <cfargument name="name" type="String"> <cfset var response={ status=201, content="<customer id="&id&"><name>"&name&"</name></customer>">, headers={ location="http://localhost:8500/rest/CustomerService/customers/123", } }> <cfset restSetResponse(response)> <cffunction>