簡體   English   中英

Angular2:Index.html不顯示文件,僅顯示“正在加載...”

[英]Angular2: Index.html doesn't display the file, only says “loading…”

我不確定如何將文件綁定到“ my-app”選擇器。 這是plnkr鏈接: http ://plnkr.co/edit/2L5jSRK3adPZWTUwWdcP?p=preview

編輯:我認為如果我將模板代碼放在index.html文件中的標簽內的插件,插棒匠可以顯示一些內容

我想知道是否有人知道如何將模板網址附加到index.html文件,以便它顯示模板網址而不是“正在加載...”

index.html文件:

<!DOCTYPE html>
<html>
  <head>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <title>Angular 2 Tour of Heroes</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">

    <!-- Polyfill(s) for older browsers -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.0/es6-shim.min.js"></script>

    <script src="https://npmcdn.com/zone.js@0.6.12?main=browser"></script>
    <script src="https://npmcdn.com/reflect-metadata@0.1.3"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.27/system.js"></script>
    <script src="https://npmcdn.com/typescript@1.8.10/lib/typescript.js"></script>

    <script src="systemjs.config.js"></script>
    <script>
      System.import('app').catch(function(err){ console.error(err);  });
    </script>
  </head>

  <body>
    <my-app>Loading...</my-app>
  </body>
</html>


<!-- 
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->

.ts文件

import {Component, OnInit} from 'angular2/core';
import {RouteConfig, ROUTER_DIRECTIVES} from 'angular2/router';
import {Hero} from './hero';
import {HeroService} from './hero.service';
import {Observable} from'rxjs/Rx'



@Component({
  selector: 'my-app',
  templateUrl: 'app/biddingPage.component.html',
  styleUrls: ['app/BiddingPage.component.css'],
  providers: [HeroService],
  directives: [ROUTER_DIRECTIVES]
})



export class BiddingPageComponent{
   numberofbids = 0;
    slot1 = 0;


myFunction(slotvalue) 
 {
        this.slot1 = slotvalue;
        this.numberofbids +=1;

 }
  ngOnInit(ticks){
    let timer = Observable.timer(2000,1000);
    timer.subscribe(t=>this.ticks = t);
  }

  upgradeTime = 172801;
  ticks = this.upgradeTime;
timer(days, hoursLeft, minutesLeft, remainingSeconds) {
    days        = Math.floor(this.ticks/24/60/60);
    hoursLeft   = Math.floor((this.ticks) - (days*86400));
    var hours       = Math.floor(hoursLeft/3600);
    minutesLeft = Math.floor((hoursLeft) - (hours*3600));
    var minutes     = Math.floor(minutesLeft/60);
    remainingSeconds = this.ticks % 60;
    if (remainingSeconds < 10) {
        remainingSeconds = 0 + remainingSeconds; 
    }
    document.getElementById('countdown').innerHTML = days + ":" + hours + ":" + minutes + ":" + remainingSeconds;
    if (this.ticks == 0) {
        clearInterval(this.countdownTimer);
        document.getElementById('countdown').innerHTML = "Completed";
    } else {
        this.ticks--;
    }
}
 countdownTimer = setInterval('timer()', 1000);

}

您的配置文件有點混亂。

將文件目錄從src更改為app 對於例如src/main.tsapp/main.ts

將您的index.html腳本標記更改為此

<script>
    System.import('app').catch(function(err){ console.error(err);  });
</script>

和您的config js

(function(global) {

var  map = {
    'app':                        'app', // 'dist',
    'rxjs':                       'https://npmcdn.com/rxjs@5.0.0-beta.6',
    'angular2-in-memory-web-api': 'https://npmcdn.com/angular2-in-memory-web-api' // get latest
  };

var packages = {
    'app':                        { main: 'main.ts',  defaultExtension: 'ts' },
    'rxjs':                       { defaultExtension: 'js' },
    'angular2-in-memory-web-api': { defaultExtension: 'js' },
  };

var packageNames = [
      '@angular/common',
      '@angular/compiler',
      '@angular/core',
      '@angular/http',
      '@angular/platform-browser',
      '@angular/platform-browser-dynamic',
      '@angular/router',
      '@angular/router-deprecated',
      '@angular/upgrade',
  ];


  packageNames.forEach(function(pkgName) {
    map[pkgName] = 'https://npmcdn.com/' + pkgName + ngVer;
  });


  packageNames.forEach(function(pkgName) {
    packages[pkgName] = { main: 'index.js', defaultExtension: 'js' };
  });

   var config = {
    transpiler: 'typescript',
    typescriptOptions: {
      emitDecoratorMetadata: true
    },
    map: map,
    packages: packages
  }


  if (global.filterSystemConfig) { global.filterSystemConfig(config); }

  System.config(config);

})(this);

您的代碼和代碼有一些錯誤,這是代碼正確的代碼

這是在angular 2 Component中指定templateUrl和StyleUrl的方法

@Component({

 selector: 'my-app',
 templateUrl:"src/app.component.html",
 styleUrls: ['src/app.component.css'],


 })

要更改目錄或文件名,只需雙擊即可。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM