0.1.3 • Published 3 years ago

qmamu-suggestion v0.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Installation

You can install with npm.

npm install qmamu-suggestion

Promise Polyfill for IE

IE8/9/10/11 does not support ES6 Promise, run this to polyfill the global environment at the beginning of your application.

require("es6-promise").polyfill();

Usage

JSONP only supports GET method, same as qmamu-suggestion.

Fetch JSONP in simple way

fetchSuggestion("/users.json")
  .then(function (response) {
    return response.json();
  })
  .then(function (json) {
    console.log("parsed json", json);
  })
  .catch(function (ex) {
    console.log("parsing failed", ex);
  });
0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.23

3 years ago

0.0.22

3 years ago

0.0.21

3 years ago

0.0.20

3 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.15

3 years ago

0.0.14

3 years ago

0.0.13

3 years ago

0.0.12

3 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago