我尝试创建我的第一个 ember.js 应用程序。日历-
我的日常模特
App.Day = Ember.Object.extend({
today : null,
dayNumber : null,
addEvent : function() {
console.log(this);
$("#myModal").modal('show');
}
});
html 视图
<div class="cal">
{{#each App.DayList}}
{{#if this.today}}
<div class="day today" {{action "addEvent" target="model" }}>
{{#with this as model}}
<span class="text">{{this.dayNumber}}</span>
{{/with}}
</div>
{{else}}
<div class="day" {{action "addEvent" target="model" }}>
{{#with this as model}}
<span class="text">{{this.dayNumber}}</span>
{{/with}}
</div>
{{/if}}
{{/each}}
</div>
所以在点击日我会显示引导对话框,我不会加载外部数据,但我需要有关点击日的信息。
我的理解是我创建了一个视图
App.DayDetails = Ember.View.extend({
});
在这个视图中我发送了一个ajax请求,但是如何在这个视图中获取有关点击日的信息?