Обычно я вызываю из 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");
}
});
});