English 中文(简体)
采用Ajax和JP的XML文档形式
原标题:Save a form in an XML file using Ajax and JSP

我想建立一个名称和电子邮件的简单表格,并在XML档案中保存这些数据。 到目前为止,我发现,使用Ajax和j Query非常容易。 因此,我使用了通常的法典:

//dataString have the values taken from the form
var dataString =  name= + name +  &email=  + email;
$.ajax({
 type: "POST",
 url: "users.xml",
 data: dataString,
 dataType: "xml",
 success: function() { .... }
});

如果我理解得很好,我就应该增加将要建立的XML档案的名称。

当用户点击一个纽顿时,我会根据Ajax的请求把这一功能点击,然后我会把一个功能点叫起生成Xml。

我也使用两名豆类。 一个是确定用户要素,另一个是拯救XML中的数据。 尽管我不知道是最佳解决办法,但我还是利用XStream图书馆为Xml。

现在问题在于,我无法把所有这些内容联系起来,以便拯救在《利比里亚马列》中的数据。

是否有任何人知道我应该做些什么?

感谢很多!

问题回答

职业介绍,但你们的理解是不正确的。 <代码>url应当指处理吉大港山区长期合作倡议申请的CGI/API服务器方的URL。 <代码>数据 类型表示,处理吉大港山区开发项目申请后,从服务器一侧收回的吉大港山区应用方案的回复数据类型。 这既可以是超文本扼杀,也可以是XML的扼杀。 为了方便立即处理答复,你可以在那里确定数据类型,以便 j知道如何“准备”答复。 JSON常常被使用,因为它是最紧凑和最快地处理 Java字。

如果是联合企业/Servlet的申请,你需要将ur <>l>/code>点到一个包含doPost()的《服务手册》。

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // First process HTTP request.
    String name = request.getParameter("name");
    String email = request.getParameter("email");
    // Do your business stuff here. You want to store this in a xml file? 

    // Then return HTTP response.
    response.setContentType("text/xml");
    response.setCharacterEncoding("UTF-8");
    response.getWriter().write("<status>ok</status>"); // Or whatever XML string you would like to return depending on the outcome of the business stuff.
}




相关问题
ajax login using httpRequest?

I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

Virtual Tour using sketch up, ajax, flash technologies

I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

How can i update div continuously

I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...