The existence of this module in the services/ folder led some to believe xhr is meant to be a general-purpose http library. Fixes #2305
15 lines
406 B
Dart
15 lines
406 B
Dart
library angular2.src.services.xhr_impl;
|
|
|
|
import 'dart:async' show Future;
|
|
import 'dart:html' show HttpRequest;
|
|
import 'package:angular2/di.dart';
|
|
import './xhr.dart' show XHR;
|
|
|
|
@Injectable()
|
|
class XHRImpl extends XHR {
|
|
Future<String> get(String url) {
|
|
return HttpRequest.request(url).then((HttpRequest req) => req.responseText,
|
|
onError: (_) => new Future.error('Failed to load $url'));
|
|
}
|
|
}
|