주형
주형
앞의 예제에서 우리는 메소드 의 templateUrl속성을 사용했습니다 $routeProvider.when.
이 template속성을 사용하면 페이지를 참조하지 않고 속성 값에 직접 HTML을 쓸 수 있습니다.
예:
템플릿 작성 :
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template : "<h1>Main</h1><p>Click on the links to change this content</p>"
})
.when("/banana", {
template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
})
.when("/tomato", {
template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
});
});
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-route.js"></script>
<body ng-app="myApp">
<p><a href="#/!">Main</a></p>
<a href="#!banana">Banana</a>
<a href="#!tomato">Tomato</a>
<p>Click on the links to change the content.</p>
<p>The HTML shown in the ng-view directive are written in the template property of the $routeProvider.when method.</p>
<div ng-view></div>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template : "<h1>Main</h1><p>Click on the links to change this content</p>"
})
.when("/banana", {
template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
})
.when("/tomato", {
template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
});
});
</script>
</body>
</html>
앞의 예제에서 우리는 메소드 의 templateUrl속성을 사용했습니다 $routeProvider.when.
이 template속성을 사용하면 페이지를 참조하지 않고 속성 값에 직접 HTML을 쓸 수 있습니다.
예:
템플릿 작성 :
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template : "<h1>Main</h1><p>Click on the links to change this content</p>"
})
.when("/banana", {
template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
})
.when("/tomato", {
template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
});
});
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular-route.js"></script>
<body ng-app="myApp">
<p><a href="#/!">Main</a></p>
<a href="#!banana">Banana</a>
<a href="#!tomato">Tomato</a>
<p>Click on the links to change the content.</p>
<p>The HTML shown in the ng-view directive are written in the template property of the $routeProvider.when method.</p>
<div ng-view></div>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template : "<h1>Main</h1><p>Click on the links to change this content</p>"
})
.when("/banana", {
template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
})
.when("/tomato", {
template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
});
});
</script>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 298 | CSS |
선택과집중
|
1개월 전 | 148 | |
| 297 | CSS |
선택과집중
|
3개월 전 | 351 | |
| 296 | CSS |
선택과집중
|
3개월 전 | 302 | |
| 295 | CSS |
선택과집중
|
3개월 전 | 282 | |
| 294 | CSS |
선택과집중
|
4개월 전 | 408 | |
| 293 | CSS |
선택과집중
|
4개월 전 | 354 | |
| 292 | CSS |
선택과집중
|
4개월 전 | 272 | |
| 291 | CSS |
선택과집중
|
4개월 전 | 282 | |
| 290 | CSS |
선택과집중
|
4개월 전 | 326 | |
| 289 | CSS |
선택과집중
|
4개월 전 | 301 | |
| 288 | CSS |
선택과집중
|
4개월 전 | 386 | |
| 287 | CSS |
선택과집중
|
5개월 전 | 338 | |
| 286 | CSS |
선택과집중
|
5개월 전 | 336 | |
| 285 | CSS |
선택과집중
|
5개월 전 | 356 | |
| 284 | CSS |
선택과집중
|
5개월 전 | 241 | |
| 283 | CSS |
|
2년 전 | 1514 | |
| 282 | CSS | 2년 전 | 2490 | ||
| 281 | CSS | 4년 전 | 4019 | ||
| 280 | CSS | 4년 전 | 4544 | ||
| 279 | 반응형웹 | 5년 전 | 2977 | ||
| 278 | 반응형웹 | 5년 전 | 2822 | ||
| 277 | 부트스트랩 | 7년 전 | 5021 | ||
| 276 | 부트스트랩 | 7년 전 | 6575 | ||
| 275 | 부트스트랩 | 7년 전 | 4657 | ||
| 274 | 부트스트랩 | 7년 전 | 6687 | ||
| 273 | 부트스트랩 | 7년 전 | 3356 | ||
| 272 | 부트스트랩 | 7년 전 | 3196 | ||
| 271 | 부트스트랩 | 7년 전 | 3697 | ||
| 270 | 부트스트랩 | 7년 전 | 3217 | ||
| 269 | 부트스트랩 | 7년 전 | 3093 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기