Я использую этот запрос ajax, когда я сбрасываю аргументы на странице сервера, я получаю пустые аргументы
, что так странно, в консоли javascript. я вижу мои данные
$.ajax({
url: "/myfiles.cfc?method=insertNewRecord",
dataType: "json",
contentType:"application/json; charset=utf-8",
type: "POST",
async: false,
data: JSON.stringify(dataString),
Ниже приведен код ColdFusion:
<cfcomponent>
<cffunction name="insertNewRecord"
access="remote" returnformat="JSON"
returntype="struct" output="true">
<cfargument name="inParam" type="" required="false" default="" />
<cfdump var="#arguments#" abort>
</cffunction>
</cfcomponent>