我尝试以角度完成我的第一个项目。 我成功地完成了我的第一个Hello world程序。
我的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文件
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 :"sadf@asljfdk.com"};
}
我已经按照5分钟快速启动了。
我正在尝试在视图部分中打印对象的第一个名称,但我收到以下错误
错误:SyntaxError:意外的令牌}
答案 0 :(得分:1)
尝试更改详细信息,如下所示 -
public details = {"firstName" : "gopi","lastName" : "mohan","phoneNumber" :"789456123","e-mail" :"sadf@asljfdk.com"};
看看这是否有帮助。