Angular์ {{ }}
- Interpolation์ ๋ณด๊ฐ์ด๋ผ๊ณ ๋ ํ๋ฉฐ, ๋ฐ์ดํฐ๋ฅผ ๋ฐ์ธ๋ฉ ํ ๋ ์ฌ์ฉํฉ๋๋ค.
- '{{ }}' ๊ตฌ๋ฌธ์ผ๋ก ๋์ ์ผ๋ก ๋ฐ์ธ๋ฉํ ๊ตฌ๋ฌธ์ ํํํฉ๋๋ค.
// app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<div>
<h1>{{pageTitle}}</h1>
<p>Welcome to {{frameworkName}}!</p>
</div>
`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
pageTitle: string = 'Angular Interpolation Example';
frameworkName: string = 'Angular';
}
React์ { }
- JSX (JavaScript XML)๋ ์๋ฐ ์คํฌ๋ฆฝํธ์ ํ์ฅ ๋ฌธ๋ฒ์ผ๋ก, React์์ ์ฌ์ฉ๋๋ ์ฃผ์ ๋ฌธ๋ฒ์ ๋๋ค.
- JSX์์ ์ค๊ดํธ '{ }'๋ฅผ ์ฌ์ฉํด JavaScript ํํ์์ ๊ฐ์ธ๋ ๊ฒ์ผ๋ก ๋์ ๋ฐ์ดํฐ ํ์ธ๋ฉ์ ํํํ๋ค.
- JavaScript ํํ์์ ์ค๊ดํธ '{ }' ์์ ํฌํจ์ํค๋ฉด ํด๋น ๋ถ๋ถ์ ๋์ ์ผ๋ก ๊ณ์ฐํ๊ณ ํํํ๋ค.
import React from 'react';
const App = () => {
const message = 'Hello, JSX!';
return (
<div>
<h1>{message}</h1>
<p>{2 + 2}</p>
</div>
);
};
export default App;
๋ฐ์ํ
'Frontend > Angular vs React' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Angular vs React | ์๋ช ์ฃผ๊ธฐ ๋ฉ์๋์ ๋ํด์ (0) | 2023.12.06 |
---|---|
Angular vs React | ์ ํ๋ฆฌ์ผ์ด์ ์ง์ ์ ์ ๋ํด์ (0) | 2023.11.16 |
Angular vs React | ์์ ์ปดํฌ๋ํธ๋ก์ ๋ฐ์ดํฐ ์ ๋ฌ์ ๋ํด์ (0) | 2023.11.14 |
Angular vs React | ๊ฐ์ DOM์ ๋ํด์ (0) | 2023.10.11 |
Angular vs React | ๊ณตํต์ (0) | 2023.10.11 |