Tag: 平均堆叠

Angular 2快速入门教程问题(嵌套组件)

嘿大家我学习Angular 2快速入门教程,但我使用的是从新波士顿下载的模板,因为它configuration为将打字稿转换为Java脚本,总之我的问题是当我试图嵌套英雄时,它不会在列表中单击显示,也不会导致在Chrome控制台中出现任何错误。 这里是我的文件,我知道有很多,但我不知道如果即时通讯一个容易识别的错误。 的package.json { "name": "angular-2", "version": "1.0.0", "scripts": { "start": "concurrently \"npm run tsc:w\" \"npm run lite\" ", "tsc": "tsc", "tsc:w": "tsc -w", "lite": "lite-server", "typings": "typings", "postinstall": "typings install" }, "license": "ISC", "dependencies": { "angular2": "2.0.0-beta.21", "systemjs": "0.19.41", "es6-shim": "^0.35.0", "reflect-metadata": "0.1.9", "rxjs": "5.0.0-beta.6", "zone.js": "0.7.4" }, "devDependencies": { "concurrently": "^3.1.0", "lite-server": […]

“ng2-CKEditor”节点模块不能使用打印机

我正在尝试在我的angular2应用程序中configurationCKEditor。 我使用节点作为我的后端平台,我使用的是ng2-CKEditor npm模块。 下面是我的代码在各自的文件。 的index.html :: <html> <head> <title>Angular 2 QuickStart</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="app/images/myblog.ico" rel="icon" type="image/x-icon" /> <link rel="stylesheet" href="app/css/app.css"> <!– 1. Load libraries –> <!– Polyfill(s) for older browsers –> <script src="node_modules/core-js/client/shim.min.js"></script> <script src="node_modules/zone.js/dist/zone.js"></script> <script src="node_modules/reflect-metadata/Reflect.js"></script> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="//cdn.ckeditor.com/4.5.6/standard/ckeditor.js"></script> <!– 2. Configure SystemJS –> <script src="systemjs.config.js"></script> <script> System.import('app').catch(function(err){ […]