Coldfusion: передать JSON из CFM в другой CFM? - PullRequest
2 голосов
/ 14 января 2012

Обычно я вызываю из CFM другой CFM, который создает объект, вызывает несколько методов для этого объекта и регистрирует пользователя;в противном случае он выводит на экран ошибку.

Вместо того, чтобы печатать ошибку, есть ли способ взять CFM и отправить его объект JSON в файл, который его вызвал?

Вот мой аякс:

// processing the login form using jQuery
    $("#loginForm").submit(function(event){
        // prevents the form from being submitted, the event is the arg to the function
        event.preventDefault();

        // stores the data from the form into a variable to be used later
        dataString = $("#loginForm").serialize();

        // the AJAX request 
        $.ajax
        ({
            type: "POST",
            url: "/helpers/auth/ldap/login_demo.cfm",
            data: dataString,
            //dataType: "text",
            success: function() 
            {
                location.reload();
            },
            error: function(ErrorMsg) 
            {
                $("#hiddenLoginError").show("fast"); 
                $("#loginForm p").css("margin-bottom","3px");
            }
        });

    });

Ответы [ 2 ]

2 голосов
/ 14 января 2012

На вашей странице CFM вы можете иметь оператор <cfif>, который проверяет, была ли страница запрошена с помощью ajax или нет.Если это был ajax, верните объект json.

<cfset isAjax = (isDefined('cgi.http_x_requested_with') AND lcase(cgi.http_x_requested_with) EQ 'xmlhttprequest')>
...
<cfif isAjax>
  <cfcontent reset="true">{ "result":false, "message": "Login Failure" }<cfabort>
</cfif>

, затем вы можете проверить ответ:

dataType: "json",
success: function(rdata) {
  alert(rdata.message);
}
1 голос
/ 14 января 2012

Попробуйте:

<cfoutput>#serializeJSON( object )#</cfoutput>
...