주형
주형
앞의 예제에서 우리는 메소드 의 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>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 178 | AngularJS | 8년 전 | 1430 | ||
| 177 | AngularJS | 8년 전 | 1203 | ||
| 176 | AngularJS | 8년 전 | 1275 | ||
| 175 | AngularJS | 8년 전 | 1366 | ||
| 174 | AngularJS | 8년 전 | 1140 | ||
| 173 | AngularJS | 8년 전 | 1882 | ||
| 172 | AngularJS | 8년 전 | 1437 | ||
| 171 | AngularJS | 8년 전 | 1130 | ||
| 170 | AngularJS | 8년 전 | 1395 | ||
| 169 | AngularJS | 8년 전 | 1190 | ||
| 168 | AngularJS | 8년 전 | 1003 | ||
| 167 | AngularJS | 8년 전 | 1966 | ||
| 166 | AngularJS | 8년 전 | 1041 | ||
| 165 | AngularJS | 8년 전 | 1107 | ||
| 164 | AngularJS | 8년 전 | 1311 | ||
| 163 | AngularJS | 8년 전 | 1154 | ||
| 162 | AngularJS | 8년 전 | 1369 | ||
| 161 | AngularJS | 8년 전 | 1371 | ||
| 160 | AngularJS | 8년 전 | 1126 | ||
| 159 | AngularJS | 8년 전 | 1093 | ||
| 158 | AngularJS | 8년 전 | 1507 | ||
| 157 | AngularJS | 8년 전 | 1480 | ||
| 156 | AngularJS | 8년 전 | 1326 | ||
| 155 | AngularJS | 8년 전 | 1214 | ||
| 154 | AngularJS | 8년 전 | 1620 | ||
| 153 | AngularJS | 8년 전 | 1099 | ||
| 152 | AngularJS | 8년 전 | 1531 | ||
| 151 | AngularJS | 8년 전 | 1421 | ||
| 150 | AngularJS | 8년 전 | 1119 | ||
| 149 | AngularJS | 8년 전 | 1644 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기