如果我放:
this.securejson = true;
进入我的 Application.cfc,然后我的 $.ajax 函数调用不会回调 .done 函数。
如果我关闭securejson,它会起作用。
有没有一种已知的方法可以在 ajax 中使用securejson?
如果我放:
this.securejson = true;
进入我的 Application.cfc,然后我的 $.ajax 函数调用不会回调 .done 函数。
如果我关闭securejson,它会起作用。
有没有一种已知的方法可以在 ajax 中使用securejson?
This.SecureJson
仅适用于内置 cfajax 功能 - 您需要禁用它才能与任何其他库一起使用。
有关更多信息,请参阅Pete Freitag 的“ColdFusion 中的前缀序列化 JSON”
有关解决方法,请参阅Chris.m0nk3y 的“在运行时禁用 secureJson 前缀” - 他建议getPageContext().getFusionContext().setSecureJSON(boolean)
根据需要使用它来打开/关闭它。