1 / 4

AJAX Basics

AJAX Basics. xhr = new XMLHttpRequest (); xhr.onreadystatechange = xhrHandler ; xhr.open ("POST", url ); xhr.send ( postData ); ... function xhrHandler () { if ( this.readyState != 4) { return; } if ( this.status != 200) { // Handle error ... return;

thisbe
Download Presentation

AJAX Basics

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. AJAX Basics xhr = new XMLHttpRequest(); xhr.onreadystatechange = xhrHandler; xhr.open("POST", url); xhr.send(postData); ... function xhrHandler() { if (this.readyState != 4) { return; } if (this.status != 200) { // Handle error ... return; } ... var text = this.responseText; } State 4 means “done” Raw text of response (also available as XML) CS 142 Lecture Notes: Ajax

  2. JSON {name: "Alice", gpa: 3.5, friends: ["Bill", "Carol", "David"]} CS 142 Lecture Notes: Ajax

  3. JSON Example • Controller code: Class StudentsController < ApplicationControllerdefget_students @students = Student.find(:all) render json:@students; endend[{"advisor_id":"2","birth":"1987-10-22", "gpa":3.9,"grad":2009,"id":1, "name":"Anderson"}, {"advisor_id":"1","birth":"1990-04-16", "gpa":3.1,"grad":2012,"id":2, "name":"Jones"}, ...] • Javascript in browser: var students = JSON.parse(xhr.responseText);element.innerHTML = students[1].name; JSONOutput AJAX response(from XMLHttpRequest object)

  4. CS 142 Lecture Notes: Cookies

More Related