我是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
?
答案 0 :(得分:1)