NetworkError:无法在'XMLHttpRequest'上执行'send':无法加载'http:// ~~ / Servlet'

时间:2015-10-22 09:17:43

标签: javascript java ajax jsp servlets

我在执行发送表单时遇到问题。 在localhost执行没问题。

NetworkError:无法在“XMLHttpRequest”上执行“发送”:无法加载“http://~~/Servlet”。

的web.xml

<servlet>
<servlet-name>GCMServlet</servlet-name>
<servlet-class>com.plantynet.mobile.mng.gcm.GCMServlet</servlet-class>

<servlet-mapping>
<servlet-name>GCMServlet</servlet-name>
<url-pattern>/GCMServlet</url-pattern>

sendForm.jsp

 $.ajax({
    type: "POST",
    url: "/djemals/GCMServlet",
                data:"searchType="+searchType+"&searchPhone="+searchPhone+"&note="+note+"&alertType="+alertType,
                async:false,

                success: function (data){

                    alert(data);
                },
                error: function (jqXHR, textStatus, errorThrown) {
                    alert("ERROR" + textStatus + " : " + errorThrown);
                    self.close();

                }
              });           

请帮帮我。 TT

0 个答案:

没有答案