Angular2从类

时间:2017-02-16 09:07:33

标签: angular typescript

我无法使{{value}}的数据绑定工作。这是一个简单的例子:

app.component.ts

    import {Component, OnInit} from "@angular/core";

    @Component({
        selector: "app",
        templateUrl: "./app/app.html"
    })

    export class AppComponent implements OnInit {
        title:string = "aaaaa";
        ngOnInit() {
            console.log("Application component initialized ...");
        }
    }

app.component.html

    <section>
        <p>test Display.</p>
        <nav>
            <p>{{title}}</p>
        </nav>
    </section>

{{title}}始终为空。我检查创建<p>的DOM。

2 个答案:

答案 0 :(得分:0)

templateUrl(app.html)名称和html(app.component.html)的名称是不同的。检查一个

答案 1 :(得分:-1)

我们试试

Bit 3 of 'y' is 1

T (84) 01010100
a (97) 01100001
s (115) 01110011
t (116) 01110100
y (121) 01111001