2012-05-09 87 views
2

我是MVC,SPA和所有的新手。我遵循這個視頻:一些基本的結果問題

http://channel9.msdn.com/Events/TechDays/TechDays-2012-Belgium/199

和我被困在那一刻,當它與結果的交易。

@{Html.UpshotContext().DataSource<DataServicesController>(x => x.GetDeliveriesForToday());} 

這是幹什麼的,如果GetDeliveriesForToday接受參數該怎麼辦?

var dataSource = upshot.dataSources.DeliveriesForToday; 

其次,什麼是dataSources?這是VS2011 intellisense找不到的。最後,DeliveriesForToday從哪裏來?我能找到的唯一東西是GetDeliveriesForToday函數。這是否意味着結果會自動剝離Get

回答