帮助将对象传递给 asp.net mvc 2 中的方法
我的 html 中有这个片段... Fusion Charts 要求我向它提供 XML 来创建图表
<script type="text/javascript">
var myChart = new FusionCharts("/Content/Fusion_Charts/Charts/Column3D.swf", "myChartId", "470", "350", "0", "0");
myChart.setDataURL("/XML/Graph/?list=<%=Model.list%>");
myChart.render("Graph");
</script>
所以在我的 XMLController 中我只有一个像这样的方法
public ActionResult Graph(FusionChartsList list)
{
return View(list);
}
所以我的问题是...我怎样才能让对象实际填充将其作为 url 参数传递?
提前致谢。
I have this snippet in my html... Fusion Charts requires I feed it an XML to create a graph
<script type="text/javascript">
var myChart = new FusionCharts("/Content/Fusion_Charts/Charts/Column3D.swf", "myChartId", "470", "350", "0", "0");
myChart.setDataURL("/XML/Graph/?list=<%=Model.list%>");
myChart.render("Graph");
</script>
So in my XMLController I simply have a method like this
public ActionResult Graph(FusionChartsList list)
{
return View(list);
}
So my question is... how can I get the object to actually populate when passing it as url parameter??
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用原始 XML 调用
setDataXML
Javascript 方法字符串代替。Call the
setDataXML
Javascript method with the raw XML string instead.