Angular2: ng2-bs3-modal у меня не работает

Trying to build a simple Angular 2 app with modal dialogs using 'ng2-bs3-modal'
  1. index.html

    <!doctype html>
    <html>
    <head>
      <title>Angular 2 QuickStart</title>
      <meta name="viewport" content="width=device-width, initial-scale=1">
    
      <!-- 1. Load libraries -->
      <!-- IE required polyfills, in this exact order -->
      <script src="node_modules/es6-shim/es6-shim.min.js"></script>
      <script src="node_modules/systemjs/dist/system-polyfills.js"></script>
    
      <script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
      <script src="node_modules/systemjs/dist/system.src.js"></script>
      <script src="node_modules/rxjs/bundles/Rx.js"></script>
      <script src="node_modules/angular2/bundles/angular2.dev.js"></script>
    
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.js"></script>
    <script src="node_modules/ng2-bs3-modal/bundles/ng2-bs3-modal.js"></script>
    
      <!-- 2. Configure SystemJS -->
      <script>
        System.config({
          packages: {
            app: {
              format: 'register',
              defaultExtension: 'js'
            }
          }
        });
        System.import('app/main')
          .then(null, console.error.bind(console));
      </script>
    
    </head>
    
    <!-- 3. Display the application -->
    
    <body>
      <my-app>Loading...</my-app>
    
    </body>
    
    </html>
    
  2. package.json

    {
      "name": "ng2-test",
      "version": "1.0.0",
      "scripts": {
        "start": "concurrent \"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.17",
        "systemjs": "0.19.27",
        "es6-promise": "^3.0.2",
        "es6-shim": "^0.33.3",
        "reflect-metadata": "^0.1.3",
        "rxjs": "5.0.0-beta.6",
        "zone.js": "0.6.12"
      },
      "devDependencies": {
        "concurrently": "^2.0.0",
        "lite-server": "^2.2.0",
        "typescript": "^1.8.10",
        "typings":"^1.0.4"
      }
    }
    
  3. tsconfig.json

    {"compilerOptions": {"target": "es5", "module": "system", "moduleResolution": "node", "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments" ": false," noImplicitAny ": false}," exclude ": [" node_modules "," typings / main "," typings / main.d.ts "]}

  4. typings.json

    {"ambientDependencies": {"es6-shim": "github: DefinentyTyped / DefinentyTyped / es6-shim / es6-shim.d.ts # 6697d6f7dadbf5773cb40ecda35a76027e0783b2"}}

  5. приложение / main.ts

    import {bootstrap} from 'angular2 / platform / browser' // import bootstrap import {AppComponent} from './app.component' // импортируем только что созданный компонент import {AComponent} из './a.component' // // импортировать {UserLoginModalComponent} из './user-login.component' //

    бутстрап (AppComponent); // наконец загрузим его. бутстрап (AComponent); // начальная загрузка (UserLoginModalComponent);

  6. app / app.component.ts

    import {Component} from 'angular2/core'; // <-- importing Component from core
    //import {AComponent} from './a.component';
    
    @Component({
        selector: 'my-app', //<----the element defined in the index.html
        template: '<h1>Angular2, Hello {{name}}</h1><br>' // <---this is the template to put in the component.
      //  directives: [AComponent],
    })
    export class AppComponent { 
        name: string;
        constructor(){
            this.name = "ANIL";
        }
    } // <--- we need to export the class AppComponent. 
    
  7. app / a.component.ts

    import {Component} from 'angular2/core'; // <-- importing Component from core
    //import {AComponent} from './a.component';
    
    @Component({
        selector: 'my-app', //<----the element defined in the index.html
        template: '<h1>Angular2, Hello {{name}}</h1><br>' // <---this is the template to put in the component.
      //  directives: [AComponent],
    })
    export class AppComponent { 
        name: string;
        constructor(){
            this.name = "ANIL";
        }
    } // <--- we need to export the class AppComponent. 
    
  8. приложение / пользователь-логин.component.ts

    import {Component} from 'angular2/core';
    import {MODAL_DIRECTIVES, ModalComponent} from 'ng2-bs3-modal/ng2-bs3-modal';
    
    @Component({
        selector: 'user-login-modal',
        directives: [MODAL_DIRECTIVES],
        template: `
            <modal #modal [keyboard]="false" [backdrop]="'static'">
                <modal-header [show-close]="false">
                    <h4 class="modal-title">I am a modal!</h4>
                </modal-header>
                <modal-body>
                    Hello World!
                </modal-body>
                <modal-footer [show-default-buttons]="true"></modal-footer>
            </modal>
        `
    })
    export class UserLoginModalComponent {
    
        @ViewChild(ModalComponent)
        modal: ModalComponent;
    
        open(){
            this.modal.open();
        }
    
        close(){
            this.modal.close();
        }
    }
    

Я вижу, что модуль ng2-bs3-modal все еще пытается получить доступ к @ angular / core, я думаю, он должен указывать на angular2 / core? Я также попытался добавить 'map' в системную конфигурацию js, но он не использовал расширение '.js' при доступе к @ angular / core (хотя defaultExtension: 'js' присутствовал в системной конфигурации js).

Пожалуйста помоги!!!

Ниже приведена трассировка журнала консоли,

angular2-polyfills.js: 127 ПОЛУЧИТЬ http://localhost:3000/@angular/core 404 ( Не найдено) scheduleTask @ angular2-polyfills.js: 127ZoneDelegate.scheduleTask @ angular2-polyfills.js: 362Zone.scheduleMacroTask @ angular2-polyfills.js: 299 (анонимная функция) @ angular2-polyfills.js: 148sendfromText @ VM1684 system: .src.js: 1156 (анонимная функция) @ system.src.js: 1739ZoneAwarePromise @ angular2-polyfills.js: 610 (анонимная функция) @ system.src.js: 1738 (анонимная функция) @ system.src.js: 2764 (анонимная функция) @ system.src.js: 3338 (анонимная функция) @ system.src.js: 3605 (анонимная функция) @ system.src.js: 3990 (анонимная функция) @ system.src.js: 4453 (анонимная function) @ system.src.js: 4705 (анонимная функция) @ system.src.js: 408ZoneDelegate.invoke @ angular2-polyfills.js: 349Zone.run @ angular2-polyfills.js: 242 (анонимная функция) @ angular2-polyfills .js: 597ZoneDelegate.invokeTask @ angular2-polyfills.js: 382Zone.runTask @ an gular2-polyfills.js: 282drainMicroTaskQueue @ angular2-polyfills.js: 500ZoneTask.invoke @ angular2-polyfills.js: 452 angular2-polyfills.js: 349 Ошибка: Ошибка: ошибка XHR (404 не найден) загрузка http://localhost:3000/@angular/core (…)


person BaajiRao    schedule 07.06.2016    source источник


Ответы (1)


Очень глупо с моей стороны, пропустил включение начального CSS

https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css

и добавьте последнюю версию ng2-bs3-modal (он ищет пакеты @ angular /, а не angular /

"ng2-bs3-modal": "^0.6.1"

используется отображение для угловой версии rc в системной конфигурации js, как показано ниже

  var map = {
    'app':                        'app', // 'dist',

    '@angular':                   'node_modules/@angular',
    'angular2':                   'node_modules/@angular',
    'angular2-in-memory-web-api': 'node_modules/angular2-in-memory-web-api',
    'rxjs':                       'node_modules/rxjs'
  };

а также

package.json

  "dependencies": {
    "@angular/common":  "2.0.0-rc.1",
    "@angular/compiler":  "2.0.0-rc.1",
    "@angular/core":  "2.0.0-rc.1",
    "@angular/http":  "2.0.0-rc.1",
    "@angular/platform-browser":  "2.0.0-rc.1",
    "@angular/platform-browser-dynamic":  "2.0.0-rc.1",
    "@angular/router":  "2.0.0-rc.1",
    "@angular/router-deprecated":  "2.0.0-rc.1",
    "@angular/upgrade":  "2.0.0-rc.1",
    "ng2-bs3-modal": "^0.6.1",
    "systemjs": "0.19.27",
    "core-js": "^2.4.0",
    "reflect-metadata": "^0.1.3",
    "rxjs": "5.0.0-beta.6",
    "zone.js": "^0.6.12",

    "angular2-in-memory-web-api": "0.0.10",
    "bootstrap": "^3.3.6"
  },
  "devDependencies": {
    "concurrently": "^2.0.0",
    "lite-server": "^2.2.0",
    "typescript": "^1.8.10",
    "typings": "^1.0.4",

    "canonical-path": "0.0.2",
    "http-server": "^0.9.0"
  },
person BaajiRao    schedule 08.06.2016