주형

· 8년 전 · 1609
주형

앞의 예제에서 우리는 메소드 의 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>
|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리싱강좌

+
분류 제목 글쓴이 날짜 조회
부트스트랩 8년 전 조회 1,628
부트스트랩 8년 전 조회 1,797
부트스트랩 8년 전 조회 1,351
부트스트랩 8년 전 조회 1,197
부트스트랩 8년 전 조회 1,586
부트스트랩 8년 전 조회 1,466
부트스트랩
[부트스트랩]
8년 전 조회 1,388
부트스트랩
[부트스트랩]
8년 전 조회 1,375
부트스트랩
[부트스트랩]
8년 전 조회 1,501
부트스트랩
[부트스트랩]
8년 전 조회 1,366
부트스트랩 8년 전 조회 1,717
부트스트랩 8년 전 조회 1,707
부트스트랩
[부트스트랩]
8년 전 조회 1,948
부트스트랩 8년 전 조회 2,862
AngularJS
[AngularJS]
8년 전 조회 1,610
AngularJS
[AngularJS]
8년 전 조회 1,273
AngularJS
[AngularJS]
8년 전 조회 1,131
AngularJS 8년 전 조회 1,528
AngularJS 8년 전 조회 1,340
AngularJS 8년 전 조회 1,659
AngularJS 8년 전 조회 1,589
AngularJS 8년 전 조회 1,561
AngularJS 8년 전 조회 1,482
AngularJS 8년 전 조회 1,366
AngularJS 8년 전 조회 1,539
AngularJS 8년 전 조회 1,190
AngularJS 8년 전 조회 1,403
AngularJS 8년 전 조회 1,409
AngularJS 8년 전 조회 1,770
AngularJS
[AngularJS]
8년 전 조회 1,509