Detailed example of prototype.js simple implementation of ajax function

小云云
Release: 2018-01-09 15:03:45
Original
1613 people have browsed it

This article mainly introduces the simple implementation of ajax function in prototype.js, and analyzes the related operation skills of prototype.js front-end ajax and background struts in the form of examples. Friends who need it can refer to it. I hope it can help everyone.

I didn’t know that prototype.js was a framework, I just thought of it as an ordinary JS file. I took it and used it, and wrote a JSP page, simply using prototype.js to achieve the AJAX effect. After using it, I found it to be very easy to use. I don’t have to write such a big pile of code anymore. Oh yeah. Let’s get back to the point. Let’s post the small code I wrote today.

1. JSP part

The most critical part of this part of the code is the change in the JS part. When prototype.js is not used, to generate an AJAX effect, there must be at least four sections. Now, only the following small section of code needs to be written.

Copy after login

The most important one is this paragraph:

var ajax = new Ajax.Request( //新生成一个AJAX.Request对象. "http://localhost:8080/LoginDemo/test.do", //请求的servlet地址.即URL { //参数 method: 'post', parameters:paras , onSuccess: onSuccess, //这些函数和上面三个函数相对应. onComplete:onComplete, onFailure:onFailure });
Copy after login

Note: The URL inside should either be written as an absolute path, or just take <% in front String path = request.getContextPath() ;%>, then here
"<%=path%>/test.do"

The most convenient thing about prototype.js for me is that I don’t have to judge the current browsing experience by myself If it succeeds, the OnSuccess function is called, and if it fails, the onFailure function is called. I only focus on what to do after success and failure, which simplifies the program.

2. Background struts part

public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { // TODO Auto-generated method stub try{ System.out.println("in action"); response.setContentType("text/html;charset=gb2312"); ServletOutputStream out = response.getOutputStream(); out.print("hello slf!"); System.out.println("out"); }catch(Exception e) { e.printStackTrace(); } return null; }
Copy after login

Simple printing.

Concepts and examples of the ajax function of javascript

Json conversion of web service based on jQuery's ajax function_jquery

jQuery’s built-in AJAX function and JSON usage examples_jquery

The above is the detailed content of Detailed example of prototype.js simple implementation of ajax function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!