如何在离子2中安装和使用jquery?

时间:2017-02-15 13:32:06

标签: jquery ionic2

如何在离子2中安装和使用jquery?我使用ionic documentation for using third party libs

我已按照以下步骤操作:

  1. npm install @ types / jquery --save - 没关系
  2. npm install @ types / jquery-mask-plugin --save - 没关系
  3. 添加 declarations.d.ts 文件:

    宣布模块' jquery&#39 ;; 声明模块' jquery-mask-plugin';

  4. 但是当我尝试编译应用程序时,我收到了错误:

    Runtime Error
    Cannot find module "jquery"
    

    在tsconfig文件中:

    {
      "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "declaration": false,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "lib": [
          "dom",
          "es2015"
        ],
        "module": "es2015",
        "moduleResolution": "node",
        "sourceMap": true,
        "target": "es5"
      },
      "include": [
        "src/**/*.ts"
      ],
      "exclude": [
        "node_modules"
      ],
      "compileOnSave": false,
      "atom": {
        "rewriteTsconfig": false
      }
    }
    

    有什么问题?

0 个答案:

没有答案