在ionic3中使用Angular计时器

时间:2017-08-20 11:20:18

标签: angular typescript ionic3

我在ionic3中使用角度计时器(即http://siddii.github.io/angular-timer/index.html#/markup5),但是当我将计时器标签放在html页面中时,则会出错。不知道该怎么做。

<timer end-time="{{timelimit.timeLimitDate}}">{{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds.</timer> 

错误:

Unhandled Promise rejection: Template parse errors:
'timer' is not a known element:
1. If 'timer' is an Angular component, then verify that it is part of 
this module.
2. To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component. ("ate}}">{{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds.</timer>-->

有谁知道需要做什么,非常感谢〜

1 个答案:

答案 0 :(得分:0)

不能使用Ionic 3以上的计时器。因为它使用AngularJS。你需要找到一个Angular模块。

我认为您可以在Ionic应用上使用此ng2-simple-timer模块。

SimpleTimer添加到模块提供程序中(例如app.module.ts)。

import { SimpleTimer } from 'ng2-simple-timer';

@NgModule({
    providers: [SimpleTimer]
})

更多info is here