我使用cfwheels框架进行coldfusion开发。我正在尝试验证(通过ajax)用户是否在将表单提交到需要用户登录的安全页面之前登录。我的ajax看起来像这样
function viewOnWebsite()
{
params = {
format: "json"
, domain: '.#page.domain#'
};
$.ajax({
url: '/user/login'
, data: params
, dataType: 'json'
, type: 'POST'
, success: function(result, status, jqXHR){
if(result)
{
$('##frmViewOnWeb').submit();
}
else
{
alert('could not validate access to the website. You can try to refresh the page or log in');
}
}
, error: function(jqXHR, status, error){
alert(status);
console.log(error);
}
});
}
这是控制器(你需要看到的部分)
<cfcomponent extends="Controller">
<cffunction name="init">
<cfset provides("html,json")>
</cffunction>
<cffunction name="login"><cfscript>
validationFunctionThatRedirectsInvalidUsers(true, 18);
/* Check to see if the authtoken still exists in the db. */
if(tokenIsValid(session.user.aToken))
{
response = {valid = "true"};
}
else
{
/* Create a new token */
application.user.notImportantCode();
/* Set the cookie */
cookie.somethingYouDontNeedToKnow = {
value = session.user.aToken
, domain = params.domain
};
response = {valid = "true"};
}
renderWith(data = response, returnAs = "json");
</cfscript></cffunction>
请原谅我此代码的邋iness。
奇怪的是,我对这个函数的回复给了我一个注释掉的JSON字符串,如下所示:
//{"valid":true}
Chrome,Firefox和IE无法解析此问题(没有尝试过Safari)。任何帮助表示赞赏。
如果函数成功则结束游戏返回true,否则返回false。因此,我想将响应设置为true或false,而不是像我现在所拥有的那样。我真的只是尝试一下,因为当我简单地返回true时,我得到了一个像这样的json字符串:
//{true}
答案 0 :(得分:1)
很可能在CF Admin或Application.cfc中启用带有“//”的前缀序列化JSON。