解析文件时angularjs2和ionic2

时间:2016-05-18 06:59:41

标签: angular ionic2

enter image description here

解析PHPUnit 5.3.4时 这是行公共http:Http;

1 个答案:

答案 0 :(得分:0)

虽然您的问题有点短,但我认为您的问题是您尝试在方法参数中使用类型而您使用的是ES6而不是TypeScript。

仅在TypeScript中支持方法参数。

有两种解决方案可以解决您的问题:

  • 使用ES6,使用静态parameters getter配置依赖注入的预期类型:

    constructor(http) {
      this.http = http;
    }
    
    get parameters() {
      return [[Http]];
    }
    
  • 使用--ts ionic start选项创建Ionic2项目。