使用dart定义angular2组件的提供程序

时间:2016-08-01 18:39:13

标签: intellij-idea angular dart angular-components

我正在使用Intellij编写angular2 dart应用程序。

我创建了一个名为Auth的提供程序,应该将其注入应用程序组件。

我使用以下代码定义了Auth服务:

import 'package:angular2/core.dart';
import 'package:auth0_lock/auth0_lock.dart';
import './config.dart';

@Injectable()
class Auth {
Auth0Lock lock;

Auth() {
    this.lock = new Auth0Lock(configObj.auth0.apiKey, configObj.auth0.domain);
}
updateProfileName(data) {
  var profile = data['profile'] != null ? data['profile'] : data;
  print(profile['name']);
}

login() {
    this.lock.show(popupMode: true, options: {'authParams': {'scope': 'openid profile'}}).then(this.updateProfileName);
}
}

和app组件使用以下代码:

import 'package:angular2/core.dart';
import 'package:angular2/router.dart';
import 'welcome_component.dart';
import 'auth_service.dart';

@Component(
    selector: 'my-app',
    templateUrl: '/www/my-app.html',
   providers: [Auth]
)
@RouteConfig(const [
  const Route(path: '/welcome', component: WelcomeComponent, name: 'welcome')
])
class AppComponent {
  Auth auth;
  AppComponent(Auth auth) {
    this.auth=auth;
  }
}

现在intellij正在抱怨带有错误消息arguments of constant creation must be constant expressions的提供者数组。

我是dart的新手...但如果组件配置需要consts,我如何提供在那里使用的类?

感谢

1 个答案:

答案 0 :(得分:3)

只需添加const即可:

providers: const [Auth]

您看到的错误是因为[Auth]创建了一个List - 虽然它只包含一个const memeber - 但它本身并不是常数。 (例如,可以添加或清除它。)Dart要求您明确指定List是常量。