Onsen UI と Angular JS をいじり始めたところです。
ons-button を介して、desert.html、text/ons-template にアクセスしていますが、バインドされた ng-model itemName が正しく解釈されていません。
Angular を OnsenUI に接続する際に何かが足りないと確信しています。ここで欠けているものに関するヒントはありますか?
index.html
<ons-list-item modifier="tappable">
<ons-button modifier="large--quiet" onclick="myNavigator.pushPage('dessert.html', { animation : 'slide' } )">Dessert</ons-button>
</ons-list-item>
<script type="text/ons-template" id="dessert.html">
<ons-page>
<ons-toolbar>
<div class="center">Dessert</div>
</ons-toolbar>
<ons-list-item class="assgn-list" ng-controller="itemNameCtrl" ng-model="itemName">
{{itemName}}
</ons-list-item>
</ons-page>
</script>
js/app.js
var myApp;
(function()
{
myApp = angular.module('myApp', ['onsen.directives']);
}
)();
myApp.controller('itemNameCtrl', function($scope)
{
$scope.itemName = "Tiramisu";
$scope.$apply();
});