我的AJAX代码如下:
$.ajax({
type:"GET",
url : "https://unpuckered-armament.000webhostapp.com/zyro/sandeep1.jsp",
data : { search: 'test' },
dataType: 'json',
success : function(json) {
alert(json.title);
}
});
我在000webhostapp.com上托管了我的JSP文件,如下所示:
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="org.json.simple.JSONObject"%>
<%
JSONObject json = new JSONObject();
json.put("title", "TITLE_TEST");
json.put("link", "LINK_TEST");
out.print(json);
out.flush();
%>
我也尝试过:
<%
out.print("{\"name\":\"John\"}");
%>
我有以下问题:
答案 0 :(得分:1)
只要我记得000webhost只支持php,你需要一台支持php的服务器来处理文件,而不是获取文件内容。您的请求就像您要求提供文本文件一样。