0
我正在使用角色JS與Typesscript。但獲取錯誤」屬性'datepicker'不存在'IAugmentedJQuery'類型。 。「請指點如何解決這個錯誤錯誤「屬性'datepicker'不存在類型'IAugmentedJQuery'With Typescript
angular.element('input#delegate-from-date').datepicker({
在此先感謝!
我正在使用角色JS與Typesscript。但獲取錯誤」屬性'datepicker'不存在'IAugmentedJQuery'類型。 。「請指點如何解決這個錯誤錯誤「屬性'datepicker'不存在類型'IAugmentedJQuery'With Typescript
angular.element('input#delegate-from-date').datepicker({
在此先感謝!
您可以創建一個datepicker.d.ts
文件在您的項目具有以下內容:
interface IAugmentedJQuery {
datepicker:any;
}
關於遷移的一些提示:
https://basarat.gitbooks.io/typescript/content/docs/types/migrating.html
你爲什麼期待它在那裏?它看起來像是一個jquery插件,這是默認情況下不可用的角度。 – toskv