0
我是一名新手,且對mvc2很感興趣。我在我的模型類中有一個方法,dat將在視圖中顯示餅圖。現在我必須在控制器的索引方法內調用這個方法。任何人都可以指導我如何做到這一點?mvc2中的方法調用
我是一名新手,且對mvc2很感興趣。我在我的模型類中有一個方法,dat將在視圖中顯示餅圖。現在我必須在控制器的索引方法內調用這個方法。任何人都可以指導我如何做到這一點?mvc2中的方法調用
我認爲模型中的方法應該提供信息來查看以創建圖表。
所以:
Controller:
get data for pie chart
pass it to the view (return view(model))
Model
function to get the data for the pie chart
View
display a pie chart with the data supplied by the controller.
如果我是正確的,數據將來自模型對象。 – TheVillageIdiot 2011-03-24 09:22:48
是的,你可以爲它創建一個存儲庫類。 – Rhapsody 2011-03-24 09:24:33
您能否詳細說明一下 – 2011-03-24 10:10:13