하이브리드 처리 부분에서 일부 통신을 PHP 웹뷰로 띄우는 부분이 있는데 앵귤러로 처리 하니 편하네요 ㅎㅎㅎ
[code]
<script type="text/javascript">
function address_book($scope, $http) {
// 주소록 데이터
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㄱ').success(function(response) {$scope.data1 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㄴ').success(function(response) {$scope.data2 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㄷ').success(function(response) {$scope.data3 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㄹ').success(function(response) {$scope.data4 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅁ').success(function(response) {$scope.data5 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅂ').success(function(response) {$scope.data6 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅅ').success(function(response) {$scope.data7 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅇ').success(function(response) {$scope.data8 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅈ').success(function(response) {$scope.data9 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅊ').success(function(response) {$scope.data10 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅋ').success(function(response) {$scope.data11 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅌ').success(function(response) {$scope.data12 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅍ').success(function(response) {$scope.data13 = response;});
$http.get('<?php echo APP_DATA_URL; ?>/data/user_data.php?linear=ㅎ').success(function(response) {$scope.data14 = response;});
var match = function (item, val) {
var regex = new RegExp(val, 'i');
return item.name_linear.toString().search(regex) == 0 ||
item.name.toString().search(regex) == 0 ||
item.tel_1_origin.toString().search(regex) == 0 ||
item.tel_1.toString().search(regex) == 0 ||
item.tel_4cut.toString().search(regex) == 0;
};
// 검색 설정
$scope.filterData = function(item) {
if(!$scope.searchField) return true;
var matched = true;
// Otherwise apply your matching logic
$scope.searchField.split(' ').forEach(function(token) {
matched = matched && match(item, token);
});
return matched;
}
}
</script>
<!-- 본문검색 { -->
<section id="topmenu">
<div class="header">
<p class="srchBox">
<span class="btn s"></span>
<input type="text" ng-model="searchField" class="txt" placeholder="이름, 전화번호를 입력해주세요.">
<a href="<?php echo APP_URL; ?>/member_form" class="btn new">신규고객</a>
</p>
</div>
</section>
<!-- } 본문검색 -->
<!-- 탭메뉴 { -->
<div class="calltab">
<ul>
<li class="off"><a href="#"><span>통화이력</span></a></li>
<li class="on"><a href="#"><span>고객목록</span></a></li>
</ul>
</div>
<!-- } 탭메뉴 -->
<!-- 리스트 { -->
<div class="memlist" ng-controller="address_book">
<h2 ng-if="data1">ㄱ</h2>
<ul ng-repeat="x in data1 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data2">ㄴ</h2>
<ul ng-repeat="x in data2 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data3">ㄷ</h2>
<ul ng-repeat="x in data3 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data4">ㄹ</h2>
<ul ng-repeat="x in data4 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data5">ㅁ</h2>
<ul ng-repeat="x in data5 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data6">ㅂ</h2>
<ul ng-repeat="x in data6 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data7">ㅅ</h2>
<ul ng-repeat="x in data7 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data8">ㅇ</h2>
<ul ng-repeat="x in data8 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data9">ㅈ</h2>
<ul ng-repeat="x in data9 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data10">ㅊ</h2>
<ul ng-repeat="x in data10 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data11">ㅋ</h2>
<ul ng-repeat="x in data11 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data12">ㅌ</h2>
<ul ng-repeat="x in data12 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data13">ㅍ</h2>
<ul ng-repeat="x in data13 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
<h2 ng-if="data14">ㅎ</h2>
<ul ng-repeat="x in data14 | filter:filterData">
<li>
<span ng-hide="true">{{x.name_linear}}</span>
<span ng-hide="true">{{x.tel_4cut}}</span>
<a href="tel:{{x.tel_1_origin}}" class="tel">
<p class="name">{{x.name}} {{x.tel_1}}</p>
<p class="age">{{x.sex}} / {{x.age}}세</p>
</a>
<a href="<?php echo APP_URL; ?>/member_form?idx={{x.idx}}" class="go ic">고객정보</a>
</li>
</ul>
</div>
<!-- } 리스트 -->
[/code]
댓글 6개
뭐? 이리 습득력이 빨라요......^-^
얼렁 쫏아가야 되는데 ...헉헉 되겠당.....ㅋㅋㅋㅋ
아직 많이 몰라요.
본격적으로 사용 한지가1주일 밖에 안되서
더 가볍네요.
좋은 정보 감사합니다.
다음앱에 적용 해봐야겠네요 ㅎㅎ
배열에 for($i=0;$i < sizeof($initial);$i++)문 돌리는게 더... T_T;
이해를 돕기위해 길게 작성 한겁니다 ㅎㅎㅎ
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7130 | 11년 전 | 2301 | ||
| 7129 | 11년 전 | 706 | ||
| 7128 |
senseme
|
11년 전 | 1291 | |
| 7127 | 11년 전 | 1161 | ||
| 7126 | 11년 전 | 812 | ||
| 7125 | 11년 전 | 2943 | ||
| 7124 | 11년 전 | 1418 | ||
| 7123 |
잘살아보자
|
11년 전 | 1278 | |
| 7122 |
잘살아보자
|
11년 전 | 679 | |
| 7121 |
잘살아보자
|
11년 전 | 3027 | |
| 7120 |
잘살아보자
|
11년 전 | 2904 | |
| 7119 |
잘살아보자
|
11년 전 | 722 | |
| 7118 |
잘살아보자
|
11년 전 | 3424 | |
| 7117 |
잘살아보자
|
11년 전 | 847 | |
| 7116 | 11년 전 | 737 | ||
| 7115 | 11년 전 | 1025 | ||
| 7114 | 11년 전 | 833 | ||
| 7113 | 11년 전 | 652 | ||
| 7112 | 11년 전 | 1073 | ||
| 7111 | 11년 전 | 1792 | ||
| 7110 | 11년 전 | 1029 | ||
| 7109 |
버섯먹은나
|
11년 전 | 799 | |
| 7108 | 11년 전 | 628 | ||
| 7107 | 11년 전 | 2401 | ||
| 7106 | 11년 전 | 1949 | ||
| 7105 | 11년 전 | 2478 | ||
| 7104 | 11년 전 | 1422 | ||
| 7103 |
|
11년 전 | 2699 | |
| 7102 | 11년 전 | 3113 | ||
| 7101 | 11년 전 | 4435 | ||
| 7100 | 11년 전 | 5784 | ||
| 7099 | 11년 전 | 2129 | ||
| 7098 | 11년 전 | 1713 | ||
| 7097 | 11년 전 | 1446 | ||
| 7096 | 11년 전 | 1119 | ||
| 7095 |
잘살아보자
|
11년 전 | 850 | |
| 7094 |
잘살아보자
|
11년 전 | 1045 | |
| 7093 |
잘살아보자
|
11년 전 | 923 | |
| 7092 |
잘살아보자
|
11년 전 | 1407 | |
| 7091 |
잘살아보자
|
11년 전 | 2207 | |
| 7090 |
잘살아보자
|
11년 전 | 879 | |
| 7089 | 11년 전 | 1055 | ||
| 7088 | 11년 전 | 1704 | ||
| 7087 | 11년 전 | 1399 | ||
| 7086 | 11년 전 | 1302 | ||
| 7085 |
|
11년 전 | 1222 | |
| 7084 | 11년 전 | 1142 | ||
| 7083 | 11년 전 | 3492 | ||
| 7082 | 11년 전 | 1136 | ||
| 7081 | 11년 전 | 1730 | ||
| 7080 | 11년 전 | 2007 | ||
| 7079 | 11년 전 | 1320 | ||
| 7078 | 11년 전 | 1294 | ||
| 7077 | 11년 전 | 1289 | ||
| 7076 | 11년 전 | 758 | ||
| 7075 | 11년 전 | 1149 | ||
| 7074 |
네이비칼라
|
11년 전 | 1495 | |
| 7073 | 11년 전 | 1467 | ||
| 7072 |
|
11년 전 | 828 | |
| 7071 | 11년 전 | 1196 | ||
| 7070 | 11년 전 | 927 | ||
| 7069 | 11년 전 | 1695 | ||
| 7068 | 11년 전 | 1345 | ||
| 7067 |
TPSint
|
11년 전 | 727 | |
| 7066 | 11년 전 | 2147 | ||
| 7065 | 11년 전 | 6638 | ||
| 7064 | 11년 전 | 1287 | ||
| 7063 | 11년 전 | 1132 | ||
| 7062 | 11년 전 | 1065 | ||
| 7061 | 11년 전 | 913 | ||
| 7060 | 11년 전 | 1463 | ||
| 7059 | 11년 전 | 860 | ||
| 7058 |
EngineMan
|
11년 전 | 3398 | |
| 7057 | 11년 전 | 1242 | ||
| 7056 | 11년 전 | 1631 | ||
| 7055 | 11년 전 | 1008 | ||
| 7054 | 11년 전 | 2648 | ||
| 7053 |
네이비칼라
|
11년 전 | 1281 | |
| 7052 | 11년 전 | 2576 | ||
| 7051 | 11년 전 | 1933 | ||
| 7050 | 11년 전 | 2449 | ||
| 7049 | 11년 전 | 1396 | ||
| 7048 | 11년 전 | 2526 | ||
| 7047 | 11년 전 | 1345 | ||
| 7046 | 11년 전 | 1028 | ||
| 7045 | 11년 전 | 1054 | ||
| 7044 | 11년 전 | 5431 | ||
| 7043 | 11년 전 | 1224 | ||
| 7042 | 11년 전 | 780 | ||
| 7041 |
열라뽕똬이
|
11년 전 | 754 | |
| 7040 | 11년 전 | 1107 | ||
| 7039 | 11년 전 | 1460 | ||
| 7038 | 11년 전 | 1872 | ||
| 7037 | 11년 전 | 2171 | ||
| 7036 | 11년 전 | 1081 | ||
| 7035 | 11년 전 | 1401 | ||
| 7034 | 11년 전 | 1346 | ||
| 7033 |
열라뽕똬이
|
11년 전 | 993 | |
| 7032 | 11년 전 | 748 | ||
| 7031 | 11년 전 | 2175 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기