JSONutil を使用して jquery と coldfusion の間で JSON をシリアル化/逆シリアル化する方法を理解しようとしています。私はcoldfusion 7で立ち往生しているためreturnformat='json'
、cfcで属性を使用できません.
client.cfc:
<cfcomponent>
<cffunction name="GetClientsByName"
returntype="query"
hint="get clients from search term">
<cfargument name="name" type="string" required="yes">
<cfquery name="GetClientsByName" datasource="#application.dsn#">
SELECT client_id, client_name
FROM Clients
WHERE client_name LIKE '%' + <cfqueryparam cfsqltype="cf_sql_varchar" value="#arguments.name#"> + '%'
</cfquery>
<cfreturn GetClientsByName>
</cffunction>
</cfcomponent>
jquery ajaxコール:
function getClients(name){
$.ajax {
type: "post"
url: "/surveymanagement/admin/client.cfc",
dataType: "json",
data: {
method: "GetClientsByName",
name: name
},
success: function(data){
$("#here").html(data)
}
}
jsonutil をどこでどのように使用してこれを機能させるのですか?
jsonutil のサイト: http://jsonutil.riaforge.org/