Giter Site home page Giter Site logo

ajax-ecma6-ficheros-joshua-samuel's Introduction

Práctica 2: Comma separated values (CSV) with AJAX

#ETSII ULL Grado de Informatica

For more information look at:

Dirección del campus virtual

Repositorio GitHuB

Página de la práctica

Página del autor

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.

Heroku

https://cvsajax.herokuapp.com/

ajax-ecma6-ficheros-joshua-samuel's People

Contributors

crguezl avatar joshuape avatar losnen avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.