Ich habe ein Javascript-Objekt erstellt
var spanglist = {
one: q1,
two:q2,
three:q3,
four: q4};
Ich erstelle das Ajax-Jquery-Objekt, um die Daten an die CFC zu senden:
$.ajax({
url: 'gridly/components/pay.cfc',
type:"POST",
dataType:' json',
data: {method: "structFromJSobjt",
returnFormat:"json",
jsStruct: spanglist}
});
In meiner cfc habe ich den folgenden einfachen Code:
<cffunction name="structFromJSobj" access="remote" output="false" >
<cfargument name="jsStruct" required="true" default="" />
<!--- AT this point I would like to work with the data contained in the jsStruct object. I can't access the data regardless of the typeI make the cfargument --->
</cffunction>
Kann mir jemand einen Tipp geben, wie ich mit den Daten spielen kann, sobald sie in der Funktion sind?