mvc2中的方法调用

发布于 2024-10-26 05:57:34 字数 76 浏览 2 评论 0原文

我是 mvc2 的新手。我的模型类中有一个方法,它将在视图中显示饼图。现在我必须在控制器的索引方法中调用此方法。谁能指导我如何做到这一点?

I am a fresher and new to mvc2.I have a method in my model class dat will display a pie chart in a view. Now i have to call this method inside the index method of the controller. Can anyone guide me how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野稚 2024-11-02 05:57:34

我认为模型中的方法应该提供要查看的信息,以便创建图表。

所以:

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.

I think that the method in the model should give information to view in order to create the chart.

So:

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.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文