我正在使用 ServiceNow。我需要在提交时验证表单。我正在使用带有脚本的 GlideAjax 来验证数据。如何将变量从 Ajax 函数calendarDate(response)传递到客户端脚本中的其他函数?当 glide ajax 函数返回错误消息时,我想将变量“isValid”设置为 false。
我使用不涉及 GlideAjax 的客户端脚本很容易做到这一点。我只是将变量 isValid 设置为函数的结果,例如 var isValid = checkLnrDates();
但是,在使用 GlideAjax 时设置一个等于函数调用的变量不会返回任何我可以使用的值。我可能不理解调用和处理 GlideAjax 函数的方式。
目录客户端脚本 onSubmit
function onSubmit () {
var isValid = checkLnrDates();
if (isValid == false) {
g_form.submitted = false;
return false;
}
}
function checkLnrDates() {
var start = g_form.getValue('start_date');
//Check calendar date format valid YYYY-MM-DD
//Script include ClientDateTimeUtils checks the input data
var ajaxCalendarDate = new GlideAjax('ClientDateTimeUtils');
ajaxCalendarDate.addParam('sysparm_name', 'validateCalendarDate');
ajaxCalendarDate.addParam('sysparm_userDate', start);
ajaxCalendarDate.getXML(calendarDate);
}
function calendarDate(response){
//This is where we get the response returned from the ClientDateTimeUtils script include ajax function
var answer = response.responseXML.documentElement.getAttribute("answer");
if (answer != 'true'){
g_form.showFieldMsg('start_date', answer,'error');
//How can I pass the value of a variable to the function above? I want to set isValid to false
isValid = false;
return false;
}
}