Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angular/27.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript angular2和typescript错误_Javascript_Angular_Typescript_Hammer.js - Fatal编程技术网

Javascript angular2和typescript错误

Javascript angular2和typescript错误,javascript,angular,typescript,hammer.js,Javascript,Angular,Typescript,Hammer.js,我正在尝试创建一个angular 2应用程序,并使用hammerjs进行触摸手势。 目前,我正在尝试将来自的quickstarter应用程序与来自的hammerjs应用程序相结合 我一直收到一个错误: http://localhost:3000/npm:plugin-typescript@4.0.10/lib/plugin.js Failed to load resource: the server responded with a status of 404 (Not Found) local

我正在尝试创建一个angular 2应用程序,并使用hammerjs进行触摸手势。 目前,我正在尝试将来自的quickstarter应用程序与来自的hammerjs应用程序相结合

我一直收到一个错误:

http://localhost:3000/npm:plugin-typescript@4.0.10/lib/plugin.js Failed to load resource: the server responded with a status of 404 (Not Found)
localhost/:33 Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:3000/npm:plugin-typescript@4.0.10/lib/plugin.js
Error: XHR error (404 Not Found) loading http://localhost:3000/npm:plugin-typescript@4.0.10/lib/plugin.js
Error loading http://localhost:3000/npm:plugin-typescript@4.0.10/lib/plugin.js
Unable to load transpiler to transpile http://localhost:3000/app/app.component.js
Error loading http://localhost:3000/app/app.component.js
我的systemjs.config.js文件:

(function (global) {
  System.config({
// DEMO ONLY! REAL CODE SHOULD NOT TRANSPILE IN THE BROWSER
transpiler: 'ts',
typescriptOptions: {
  tsconfig: true
},
meta: {
  'typescript': {
    "exports": "ts"
  }
},
paths: {
  // paths serve as alias
  'npm:': 'node_modules'
},
// map tells the System loader where to look for things
map: {
  // our app is within the app folder
  app: 'app',

  // angular bundles
  '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
  '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
  '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
  '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
  '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
  '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
  '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
  '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
  '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',

  // other libraries
  'rxjs':                       'npm:rxjs',
  'angular2-in-memory-web-api': 'npm:angular2-in-memory-web-api',
  'ts':                         'npm:plugin-typescript@4.0.10/lib/plugin.js',
  'typescript':                 'npm:typescript@2.0.2/lib/typescript.js',

},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
  app: {
    main: './app.component.js',
    defaultExtension: 'js'
  },
  rxjs: {
    defaultExtension: 'js'
  },
  'angular2-in-memory-web-api': {
    main: './index.js',
    defaultExtension: 'js'
      }
    }
   });
})(this);
我的文件夹结构:

mypackage.json文件:

{
  "name": "angular-quickstart",
  "version": "1.0.0",
  "description": "QuickStart package.json from the documentation,     supplemented with testing support",
  "scripts": {
"build": "tsc -p src/",
"build:watch": "tsc -p src/ -w",
"build:e2e": "tsc -p e2e/",
"serve": "lite-server -c=bs-config.json",
"serve:e2e": "lite-server -c=bs-config.e2e.json",
"prestart": "npm run build",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"pree2e": "npm run build:e2e",
"e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first",
"preprotractor": "webdriver-manager update",
"protractor": "protractor protractor.config.js",
"pretest": "npm run build",
"test": "concurrently \"npm run build:watch\" \"karma start     karma.conf.js\"",
"pretest:once": "npm run build",
"test:once": "karma start karma.conf.js --single-run",
"lint": "tslint ./src/**/*.ts -t verbose"
  },
  "keywords": [],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@angular/common": "~2.4.0",
    "@angular/compiler": "~2.4.0",
    "@angular/core": "~2.4.0",
    "@angular/forms": "~2.4.0",
    "@angular/http": "~2.4.0",
    "@angular/platform-browser": "~2.4.0",
    "@angular/platform-browser-dynamic": "~2.4.0",
    "@angular/router": "~3.4.0",

    "angular-in-memory-web-api": "~0.2.4",
    "systemjs": "0.19.40",
    "core-js": "^2.4.1",
    "rxjs": "5.0.1",
    "zone.js": "^0.7.4"
  },
  "devDependencies": {
    "concurrently": "^3.2.0",
    "lite-server": "^2.2.2",
    "typescript": "~2.0.10",

    "canonical-path": "0.0.2",
    "tslint": "^3.15.1",
    "lodash": "^4.16.4",
    "jasmine-core": "~2.4.1",
    "karma": "^1.3.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-cli": "^1.0.1",
    "karma-jasmine": "^1.0.2",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~4.0.14",
    "rimraf": "^2.5.4",

    "@types/node": "^6.0.46",
    "@types/jasmine": "2.5.36"
  },
  "repository": {}
}
我安装了所有npm安装模块

我缺少什么?

您可能需要这个(来自SystemJS的ypeScript loader文档):如果您使用的是没有JSPM的SystemJS(您使用的是npm),请为插件typescript和typescript添加SystemJS映射配置:

SystemJS.config({
  packages: {
    "ts": {
      "main": "plugin.js"
    },
    "typescript": {
      "main": "lib/typescript.js",
      "meta": {
        "lib/typescript.js": {
          "exports": "ts"
        }
      }
    }
  },
  map: {
    "ts": "path/to/plugin-typescript/lib",
    "typescript": "path/to/typescript"
  },
  transpiler: 'ts'
});

您是否在命令行上运行了npm安装?package.json文件的内容是什么?它找不到这个库:npm:plugin-typescript@4.0.10/lib/plugin.jsI更新了这个问题。我安装了npm,并且有所有的依赖项。顺便说一句,我的节点\模块/typescript文件夹中没有plugin.js。这是您缺少的库:。这不是typescript库,它是一个第三方库。Claies-我不知道这个插件,现在它已经安装好了,我的System.config设置与这个插件有问题。你能看到应该在那里设置什么吗?如果你真的需要使用缺少的插件,请转到它的github存储库()并阅读文档。如果你不需要它,请删除system.config.js文件中的行以查看发生了什么。这就是该插件的用途,“SystemJS插件,允许您直接导入System.import TypeScript文件。文件在浏览器中传输,编译错误写入控制台。”