我期待" hello world",但我从AJAX响应中得到空白或未定义。如果我使用xdmp:log()。
,我可以看到我在测试函数中(: test.xqy there is a get request field that calls the test function
based on the test parameter from url :)
declare function local:test(){
let $hello := "hello world"
return $hello
}
// ajax from js file
$j.get("/search/survey.html?test", null, function(res){
console.log("res:");
console.log(res); // blank
console.log(res.responseText); // undefined
}, "text");
答案 0 :(得分:1)
我有另一个使用get request字段来调用测试函数的函数。问题是我没有在该功能中返回任何内容。