angular router ui 루트 모듈(부자) 등급 설명
라우팅 구성 페이지
/***************** ************************/
//
.state('heroTopList', {
url: '/heroTopList',
abstract:true,
templateUrl: 'templates/heroTopIndex.html',
//
onEnter: function () {
},
//
onExit: function () {
},
controller: ["$scope", "$state", function ($scope, $state) {
$scope.tabChange = function(myevent){
var currentObj = $(myevent.target);
currentObj.closest(".yingxiongbang").find("a.button").removeClass("active");
currentObj.addClass("active");
};
}]
})
//top10
.state('heroTopList.topShop', {
url: '/heroTopList/topShop',
templateUrl: 'templates/heroTopIndex_topShop.html',
//
onEnter: function () {
},
//
onExit: function () {
},
controller: ["$scope", "$state", function ($scope, $state) {
}]
})
//top10
.state('heroTopList.topSuperMember', {
url: '/heroTopList/topSuperMember',
templateUrl: 'templates/heroTopIndex_topSuperMember.html',
//
onEnter: function () {
},
//
onExit: function () {
},
controller: ["$scope", "$state", function ($scope, $state) {
}]
})
//top10
.state('heroTopList.topMember', {
url: '/heroTopList/topMember',
templateUrl: 'templates/heroTopIndex_topMember.html',
//
onEnter: function () {
},
//
onExit: function () {
},
controller: ["$scope", "$state", function ($scope, $state) {
}]
})
heroTopIndex.html 템플릿 페이지 내용
<ion-header-bar align-title="center">
<div class="buttons">
<a class="button button-clear" ui-sref="index">
<span class="icon ion-ios-arrow-left"></span>
</a>
</div>
<h1 class="title">
</h1>
</ion-header-bar>
<style>
.yingxiongbang a.active{
background-color: #000;
color: #fff;
}
</style>
<ion-content class="">
<div class="button-bar yingxiongbang">
<a class="button bg_e3e2e2 active" ui-sref="heroTopList.topShop" ng-click="tabChange($event)"> </a>
<a class="button bg_e3e2e2" ui-sref="heroTopList.topMember" ng-click="tabChange($event)"> </a>
<a class="button bg_e3e2e2" ui-sref="heroTopList.topSuperMember" ng-click="tabChange($event)"> </a>
</div>
<div ui-view></div>
</ion-content>
heroTopIndex_topMember.html 페이지 내용
<style>
.list .item.item-avatar{
min-height: 70px;
padding-top:14px;
padding-bottom: 14px;
}
</style>
<div class="list">
<div class="item item-avatar">
<img src="public/image/touxiang.png">
<div class="line_height_35px font_16">
<div class="float_left"> </div>
<div class="float_right">¥222222.22</div>
<div class="clear_both"></div>
</div>
</div>
<div class="item item-avatar">
<img src="public/image/touxiang.png">
<div class="line_height_35px font_16">
<div class="float_left"> </div>
<div class="float_right">¥222222.22</div>
<div class="clear_both"></div>
</div>
</div>
</div>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.