Skip to content

LambdaCode/AJAX-ECMA6-Modules-Files

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Assignment: Comma separated values (CSV) using AJAX

AJAX Image
Build Status

INFO:

jQuery.get( url [, data ] [, success ] [, dataType ] )

  • url
    • Type: String
    • A string containing the URL to which the request is sent.
  • data
    • Type: PlainObject or String
    • A plain object or string that is sent to the server with the request.
  • success
    • Type: Function( PlainObject data, String textStatus, jqXHR jqXHR )
    • A callback function that is executed if the request succeeds. Required if dataType is provided, but you can use null or jQuery.noop as a placeholder.
  • dataType
    • Type: String
    • The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).

jQuery.get( [settings ] )

  • settings
    • Type: PlainObject
    • A set of key/value pairs that configure the Ajax request.
    • All properties except for url are optional.
    • A default can be set for any option with $.ajaxSetup().

This is a shorthand Ajax function, which is equivalent to:

$.ajax({
  url: url,
  data: data,
  success: success,
  dataType: dataType
});

The success callback function is passed the returned data, which will be an XML root element, text string, JavaScript file, or JSON object, depending on the MIME type of the response. It is also passed the text status of the response.

PREVIEW

Preview

HEROKU DEPLOYMENT

Application: https://csvajaxrateam.herokuapp.com/
Testing: https://csvajaxrateam.herokuapp.com/tests

USED TECHNOLOGIES

  • jQuery
  • AJAX
  • SASS
  • Underscore
  • Karma + Mocha + Chai + Sinon
  • File Handling
  • RegExp
  • Views (ExpressJS)
  • ECMA 6
  • Event Handling
  • PAAS Deployment (Heroku)
  • Version control + Collaboration (Git)

DEVELOPERS

Adrián Rodríguez Bazaga

Rudolf Cicko

** Link to the subject "Procesadores de Lenguajes" (Language Processors):**

** Link to the assignment description:**

Validated by www.W3.org (validator.w3.org)

Result: 0 errors and 0 warnings. W3 Validation

JSHint Metrics (http://jshint.com/)

Result: 0 errors and 0 warnings. JSHint Metrics

About

AJAX + ECMA6 + Modules + File Handling + Event Handling

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 98.3%
  • CSS 1.5%
  • HTML 0.2%