虽然我有编程经验,但对 GS、JS 或与 UI 相关的任何东西都是全新的。
场景:从 Greasemonkey 脚本向 Servlet 进行 AJAX 调用
Greasemonkey/JS 代码:
function getResultsData(query){
alert("Getting the Data");
$.ajax(
{
cache: false,
data: {"q":query},
dataType:"text",
url: "http://myserver.com:8000/search?",
success: processData
}); //end of $.ajax }
function processData(data){
alert("Got the data");
var myResultDiv = document.getElementById("searchRes");
myResultDiv.innerHTML = data; }
小服务程序代码:
System.out.println("-----------This is an AJAX call------------------");
//Commented the original logic
resp.setContentType("text/plain");
resp.setCharacterEncoding("UTF-8");
resp.getWriter().write("Text from Servlet");
问题:
如果 url(在 $.ajax 中)是其他一些现有的 API,则 GS/JS 代码可以完美运行。响应反映在 UI 中
但是,当我提供服务器的 url 时,我可以在 Firebug.Console 中观察到该调用没有 http 响应,但状态显示为 200 OK,整个条目变为“RED”。
当我测试从 Firebug 的“http 调用条目”复制的 url 时,它运行良好,因为我可以在新选项卡上看到响应“来自 Servlet 的文本”。
有人可以帮忙吗。
注意greasemonkey运行的网站,我的服务器属于同一个域,即
Greasemonkey 网站:www.example.com
我的服务器:www.myserver.example.com