Невозможно запустить PLNKR для угловых 4 - PullRequest
0 голосов
/ 05 июня 2018

У меня есть код плунжера ниже, и этот код предназначен для отображения некоторого дочернего компонента:

HTML внутри дочернего компонента показан ниже:

<div>
      <h3>I'm the Child component</h3>
    </div>

Код Plnkr показан ниже:

https://embed.plnkr.co/aYET8s/

Но всякий раз, когда я запускаю поршень, я получаю текст «Загрузка ..».

Почему я не получаю «Я дочерний компонент» вбраузер?

Не могли бы вы помочь?

1 Ответ

0 голосов
/ 05 июня 2018

Измените config.js на rxjs@5 и angular/core@5

  map: {

    'app': './src',

    //'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
    '@angular/core': 'npm:@angular/core@5/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/animations': 'npm:@angular/animations/bundles/animations.umd.js',
    '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
    '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',

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

    //'rxjs': 'npm:rxjs',
    'rxjs': 'npm:rxjs@5',
    'typescript': 'npm:typescript@2.2.1/lib/typescript.js'
  },

DEMO на PLNKR

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...