OnesnUI と AngularJS を使用してアプリを作成し、ng-model を使用して DOM 要素から入力を取得しています。
私のコードがあります
<body>
<ons-screen>
<ons-page class="center" ng-controller="page1Ctrl">
<ons-navigator title="Page 1">
<div class="center">
<h1>Pharmy</h1>
<ons-text-input ng-model="medName" placeholder="Enter Medicine Name" style="display:block; width:100%;" id="test"></ons-text-input>
<div style="position:relative">
<ons-text-input ng-model="location" placeholder="Enter Location" style="display:block; width:100%; margin-top:10px;"></ons-text-input>
<ons-icon icon="search" style="position:absolute;right:10px;top:5px;"></ons-icon>
</div>
<ons-button ng-click="goToPage2()"
style="width:10%; margin-top:10px;">
<ons-icon icon="search"></ons-icon>
</ons-button>
</div>
</ons-navigator>
</ons-page>
</ons-screen>
</body>
入力テキストボックスから値を取得しようとすると、次のようになりますapp.js
:
(function () {
'use strict';
var app = angular.module('myApp', ['onsen.directives']);
app.controller('page1Ctrl',['$scope','pageService',function($scope,pageService){
$scope.$watch('medName',function(newVlaue){
console.log('Watching YOU !' + newVlaue);
});
console.log($scope.medName);
$scope.goToPage2 = function(){
console.log('Going to page2 !');
console.log($scope.medName);
pageService.start($scope.medName);
$scope.ons.navigator.pushPage("page2.html");
}
}]);
})();
medName
印刷された値はなぜundefined
ですか?