2.0.1 • Published 1 year ago

imnd-ajax v2.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

imnd-ajax

Component for working with ajax requests. It works with get and post requests.

Usage:

import ajax from 'imnd-ajax';

POST request:

  ajax
    .post(
      url,
      {
        [url params]
      }
    )
    .then(data => {
      if (data.success) {
        ...
      }
    });

GET request:

    ajax
      .get(
        url,
        {
          [url params]
        },
        'html'
      )
      .then(data => {
          ...
      });
2.0.1

1 year ago

1.1.0

2 years ago

2.0.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago