ember-ajax icon indicating copy to clipboard operation
ember-ajax copied to clipboard

Service for making AJAX requests in Ember applications

Results 47 ember-ajax issues
Sort by recently updated
recently updated
newest added

Bumps [tar](https://github.com/npm/node-tar) from 2.2.1 to 2.2.2. Commits 523c5c7 2.2.2 7ecef07 Bump fstream to fix hardlink overwriting vulnerability 9fc84b9 Use {} for hardlink tracking instead of [] 15e59f1 Only track previously...

dependencies

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.0.11 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...

dependencies

I'm extending the AjaxService in TypeScript like this: ``` # services/ajax.ts import AjaxService from 'ember-ajax/services/ajax'; export default class Ajax extends AjaxService { namespace = '/api'; } ``` Which gives the...

Bug

Just tried running my app with the Octane blueprint and boot failed because jquery is used in this addon. It looks like it's not specified as a dependency though, so...

# Overriding handleResponse() in an ember-data adapter doesn't get called I'm trying to get `ember-data` to use the `ember-ajax` service. I've run into a problem: one of my adapters overrides...

Ember Data Mixin

Hi, I've encounter a never ending test with failed AJAX. When error is thrown (eq. not handled in the task), then [run.join](https://github.com/ember-cli/ember-ajax/blob/master/addon/mixins/ajax-request.ts#L355) throws this error immediately and fails to continue...

After upgrading to latest ember-ajax, it is no longer possible to override the ajax service using a js (not ts) file. Minimal Reproduction (Run ember test): https://github.com/Gaurav0/repro-ajax-ts

Not sure if this belongs here, if it doesn't feel free to close. I am trying to get typings working with a `jsconfig.json` file without going full typescript. Usually when...

This change allows users of `ember-ajax` to opt into jQuery's "intelligent guess" based on the response's Content-Type headers.

I'm using Ember 3.1.2, and ember-ajax 3.0.0. Assuming I'm serving my Ember app at `localhost:4200` and have the namespace and host configured as follows: ``` // services/ajax namespace: '/foo', host:...