I just started to learn Ember.js, and reading the doucmentation at http://emberjs.com/. At the Binding section, I just copied&pasted following code, and executed it on Chrome browser. Binded data (App.husband.get('householdIncome')) always returned 'undefined'. Do you know why? I'd like to know why my code does not work.
----- HTML code ------
<html>
<body>
<script src="js/libs/jquery-1.7.2.js"></script>
<script src="js/libs/ember-0.9.6.js"></script>
<script src="js/app.js"></script>
</body>
</html>
----- app.js ------
var App = Ember.Application.create();
App.wife = Ember.Object.create({
householdIncome: 80000
});
App.husband = Ember.Object.create({
householdIncomeBinding: 'App.wife.householdIncome'
});
console.log(App.wife.get('householdIncome')); // 80000
console.log(App.husband.get('householdIncome'));// expected 80000
------ Result Output -----------
80000
undefined