基本上,我从另一个CFM调来,该调频台制造了一个物体,用几种方法瞄准这个物体,并将用户登录在其中;否则,它会在屏幕上打印了一个错误。
而是随后印刷Error, 是否有办法采用CFM, 是否将一名JSON物体投到称为Error的档案中?
这里我要说:
// 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");
}
});
});