2016-07-11 21 views
0

Ich versuche, mein erstes Projekt in eckigen zu tun. Ich habe erfolgreich mein erstes Hello World Programm gedruckt.Fehler: SyntaxError: Unerwartetes Token}

meine index.html

<html> 
    <head> 
    <title>Angular 2 QuickStart</title> 
    <meta charset="UTF-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link rel="stylesheet" href="styles.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> 
    <!-- 2. Configure SystemJS --> 
    <script src="systemjs.config.js"></script> 
    <script> 
     System.import('app').catch(function(err){ console.error(err); }); 
    </script> 
    </head> 
    <!-- 3. Display the application --> 
    <body> 
    <my-app>Loading...</my-app> 
    </body> 
</html> 

main.ts

import { bootstrap } from '@angular/platform-browser-dynamic'; 
import { AppComponent } from './app.component'; 

bootstrap(AppComponent); 

app.component.ts

Datei
import { Component } from '@angular/core'; 
@Component({ 
    selector: 'my-app', 
    template: ` 
    Hello {{details.firstName}} 
` 
}) 
export class AppComponent { 
    public details = {firstName : "gopi",lastName : "mohan",phoneNumber :"789456123",e-mail :"[email protected]"}; 

} 

ich die 5 Minuten Schnellstart gefolgt.

I am trying to print the first name of the object in my view part but i am getting the below error

Error: SyntaxError: Unexpected token }

+1

In Javascript wird die Variable 'e-mail' in' 'interpretiert, wenn Sie Bindestriche in Variablennamen verwenden wollen, müssen Sie sie wie '' e-mail'' in Anführungszeichen setzen –

Antwort

1

Versuchen Details wie folgenden-

public details = {"firstName" : "gopi","lastName" : "mohan","phoneNumber" :"789456123","e-mail" :"[email protected]"}; 

sehen, ob dies hilft zu ändern.

Verwandte Themen