我有一个通过 ajax 调用的 cfc 函数。它接受商家代码(单个代码或以逗号分隔的代码列表),执行一些检查和 I/O,然后返回一个标志。
注意:出于安全原因,我们启用了 CFAdmin 设置“前缀 JSON 与 '//'”,这似乎是问题的根源。
氟氯化碳功能:
该函数只有两种可能的返回值:字符串(例如“qweqweqwe”)或“1”。
当遇到无效时,该字符串在循环内返回merchant_code
。循环后返回“1”作为整个过程成功的指示。
<cffunction name="createCategoryMerchant" access="remote" returntype="any" returnFormat="JSON">
<cfargument name="category_id" required="true" type="numeric"/>
<cfargument name="merchant_code" required="true" type="any" default="" hint="expect list of merchant codes"/>
<cfset var qChk = 0 />
<cfset var qIns = 0 />
<cfset var vItem = "">
<cfloop list="#arguments.merchant_code#" index="item">
<!--- does merchant exist? --->
<cfquery name="qChk" datasource="#DSN#">
select id from merchant
where merchant_num = <cfqueryparam value="#item#" cfsqltype="cf_sql_varchar" />
</cfquery>
<cfif not qChk.recordcount>
<cfreturn merchant_code> <!--- return bad code, e.g. "qweqweqwe" --->
<cfbreak>
</cfif>
<!--- Has the merchant already been assigned to this category? --->
<cfquery name="qChk" datasource="#DSN#">
select unique_id
from category_merchant
where category_id = <cfqueryparam value="#arguments.category_id#" cfsqltype="cf_sql_integer" />
and merchant_code = <cfqueryparam value="#item#" cfsqltype="cf_sql_varchar" />
</cfquery>
<cfif qChk.recordcount>
<cfcontinue> <!--- silently accept and bail out, even though already exists --->
</cfif>
<!--- insert record if code is legit --->
<cfquery name="qIns" datasource="#DSN#">
insert into category_merchant (category_id, merchant_code)
values (
<cfqueryparam value="#arguments.category_id#" cfsqltype="cf_sql_integer" />,
<cfqueryparam value="#UCASE(item)#" cfsqltype="cf_sql_varchar" />
)
</cfquery>
</cfloop>
<cfreturn 1>
</cffunction>
阿贾克斯:
在下面的代码中,我包含了我尝试过的两个不同的 ajax 调用选项,每个选项都会产生不同的结果,如代码注释中所述。
$('.btnAddMerchant').on('click',function(e){
var clickedID = $(this).attr("id");
var category_id = clickedID.split("_")[1];
var merchant_code = $('#merchant_code').val();
merchant_code = merchant_code.replace(/\s/g,'');
$('.res').empty().hide;
if(merchant_code.length == 0){
$('#resAdd').show().html('Enter merchant code');
}else{
// OPTION 1: Note I have used "dataFilter" to handle the "//" prefixed JSON
$.ajax({
type:"POST",
url: '/system.cfc?method=createCategoryMerchant',
data: {category_id:category_id,merchant_code:merchant_code},
dataFilter: function(data, type) {return data.substr(2)},
dataType: 'json',
cache:false,
success: function(res) {
alert(res); // This only fires for INVALID codes, i.e. if the cfc returns a string such as "qweqweqwe". Doesn't fire for a single numeric return, e.g. "1"
}
});
// OPTION 2:
$.getJSON("/system.cfc?method=createCategoryMerchant&returnformat=json",{"category_id":category_id,"merchant_code":merchant_code},function(res,code){
alert(res); // This only fires if the code is VALID, i.e. the CFC returns "1". It does not fire if the invalid code "qweqweqwe" is returned
});
}
});
还请注意:仅返回带有“//”前缀的无效代码。如果返回“1”,则没有前缀。
如果我禁用 CFAdmin 设置“使用'//'前缀 JSON”,那么所有问题都会消失。我更喜欢使用上面的 ajax 选项 1,但需要知道为什么它显然只是默默地无法处理返回的标志“1”以获取有效数据。
编辑
问题可能只是选项 1 中的 dataFilter 属性正在使用不以“//”为前缀的返回值。那么为什么返回的“1”没有带有“//”前缀,而“qweqweqw”却有前缀呢?