Typescript
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent { testText = string; lazyLoad(): void { … const testText = 'テストです。'; //←この変数をHTMLで使いたい。 console.log(testText) … } }
HTML
{{testText}} <!--←こんな感じで表示させたい。-->
上記のような形で、中に入り込んで指定した変数をHTML側で表示させるようにするにはどうしたら良いでしょうか?
よろしくお願い致します!!
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/11 02:54