谢谢阅读。随着我正在升级到 MVC,我也越来越多地接触到很多 Javascript(我在这方面非常薄弱)。
我有一个呈现如下数据列表的视图
<table>
<tr>
<th>heading 1</th>
<th>heading 2</th>
<th>heading 3</th>
<th>heading 4</th>
<th>chart</th>
</tr>
foreach(var item in Model)
{
<tr>
<td>@item.data1</td>
<td>@item.data2</td>
<td>@item.data3</td>
<td>@item.data4</td>
<td><div id="graphname"></div> </td>
</tr>
}
</table>
通过遵循此处http://blog.simontimms.com/2009/06/bar-graphs-using-flot-and-aspnet-mvc.html的示例,我可以获得正确的数据。我如何使用从该链接中学到的知识,并且还能够创建/返回多个图表
<div id="graphname"></div>
,因为它是由 id 引用的?还是有更好的方法来完全做到这一点?