AngularJS Routing
AngularJS Routing
이 ngRoute모듈은 응용 프로그램이 단일 페이지 응용 프로그램이되도록 도와줍니다.
Angular에서 라우팅이란 무엇입니까?
응용 프로그램의 다른 페이지로 이동하려고하지만 페이지를 다시로드하지 않고 응용 프로그램을 SPA (단일 페이지 응용 프로그램)로 만들려면 해당 ngRoute모듈을 사용할 수 있습니다 .
ngRoute모듈 경로 전체 응용 프로그램을 다시로드하지 않고 다른 페이지로 응용 프로그램입니다.
예:
"red.htm", "green.htm"및 "blue.htm"으로 이동하십시오.
<body ng-app="myApp">
<p><a href="#/!">Main</a></p>
<a href="#!red">Red</a>
<a href="#!green">Green</a>
<a href="#!blue">Blue</a>
<div ng-view></div>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "main.htm"
})
.when("/red", {
templateUrl : "red.htm"
})
.when("/green", {
templateUrl : "green.htm"
})
.when("/blue", {
templateUrl : "blue.htm"
});
});
</script>
</body>
이 ngRoute모듈은 응용 프로그램이 단일 페이지 응용 프로그램이되도록 도와줍니다.
Angular에서 라우팅이란 무엇입니까?
응용 프로그램의 다른 페이지로 이동하려고하지만 페이지를 다시로드하지 않고 응용 프로그램을 SPA (단일 페이지 응용 프로그램)로 만들려면 해당 ngRoute모듈을 사용할 수 있습니다 .
ngRoute모듈 경로 전체 응용 프로그램을 다시로드하지 않고 다른 페이지로 응용 프로그램입니다.
예:
"red.htm", "green.htm"및 "blue.htm"으로 이동하십시오.
<body ng-app="myApp">
<p><a href="#/!">Main</a></p>
<a href="#!red">Red</a>
<a href="#!green">Green</a>
<a href="#!blue">Blue</a>
<div ng-view></div>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "main.htm"
})
.when("/red", {
templateUrl : "red.htm"
})
.when("/green", {
templateUrl : "green.htm"
})
.when("/blue", {
templateUrl : "blue.htm"
});
});
</script>
</body>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 58 | jQuery Mobile | 8년 전 | 2979 | ||
| 57 | jQuery Mobile | 8년 전 | 2024 | ||
| 56 | jQuery Mobile | 8년 전 | 1354 | ||
| 55 | jQuery Mobile | 8년 전 | 1548 | ||
| 54 | jQuery Mobile | 8년 전 | 2231 | ||
| 53 | jQuery Mobile | 8년 전 | 1531 | ||
| 52 | jQuery Mobile | 8년 전 | 1551 | ||
| 51 | jQuery Mobile | 8년 전 | 1421 | ||
| 50 | jQuery Mobile | 8년 전 | 1310 | ||
| 49 | jQuery Mobile | 8년 전 | 1815 | ||
| 48 | jQuery Mobile | 8년 전 | 1458 | ||
| 47 | jQuery Mobile | 8년 전 | 2014 | ||
| 46 | jQuery Mobile | 8년 전 | 1976 | ||
| 45 | jQuery Mobile | 8년 전 | 1509 | ||
| 44 | jQuery Mobile | 8년 전 | 1670 | ||
| 43 | jQuery Mobile | 8년 전 | 1783 | ||
| 42 | jQuery Mobile | 8년 전 | 1662 | ||
| 41 | jQuery Mobile | 8년 전 | 1832 | ||
| 40 | jQuery Mobile | 8년 전 | 1468 | ||
| 39 | jQuery Mobile | 8년 전 | 1628 | ||
| 38 | jQuery Mobile | 8년 전 | 2176 | ||
| 37 | jQuery Mobile | 8년 전 | 2678 | ||
| 36 | jQuery Mobile | 8년 전 | 2128 | ||
| 35 | jQuery Mobile | 8년 전 | 1514 | ||
| 34 | jQuery Mobile | 8년 전 | 2417 | ||
| 33 | AngularJS | 8년 전 | 2862 | ||
| 32 | AngularJS | 8년 전 | 2426 | ||
| 31 | AngularJS | 8년 전 | 1761 | ||
| 30 | AngularJS | 8년 전 | 2836 | ||
| 29 | AngularJS | 8년 전 | 2391 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기