
BREAKING CHANGE All imports from 'angular2/core/compiler' should be changed to 'angular2/compiler'.
15 lines
408 B
Dart
15 lines
408 B
Dart
library angular2.src.services.xhr_impl;
|
|
|
|
import 'dart:async' show Future;
|
|
import 'dart:html' show HttpRequest;
|
|
import 'package:angular2/core.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'));
|
|
}
|
|
}
|