1. 程式人生 > >ionic2 ts中使用cordova外掛

ionic2 ts中使用cordova外掛

因為ionic2是基於typescript的,需要編譯,在ts檔案中直接使用會報錯,

比如使用toast外掛:

window.plugins.toast.showShortCenter(msg)

會報錯:

Property 'plugins' does not exist on type 'Window'.

解決方法:

(<any>window).plugins.toast.showShortCenter(msg);

即window改為(<any>window)。