mvc2.0中如何将html表格数据传递给控制器
我有一个 HTML 表格(网格)。我想将 html 表数据传递给控制器。(mvc 2.0) 谁能帮忙,这怎么可能。 谢谢。
I have a HTML table (grid). I want to pass the html table data to controller.(mvc 2.0)
can anyone help how does it is possible.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将使用 jQuery 获取所有行和单元格,然后将这些单元格的内容放入 JSON 对象中,该对象可以发布到 Action 方法。
I would use jQuery to get all the rows and cells and then put the content of those cells into JSON object which could be posted to Action method.
你不能只是将innerHtml从具有表html作为httpPost的div传递到控制器并将其作为字符串参数获取,使用此方法可能会遇到字符串长度问题。
但我不明白你为什么要这样做的逻辑,你是想保留数据吗?
can you not just pass the innerHtml from a div which has the table html as a httpPost to a controller and get it as a string argument, you may have issues with string lengths using this method.
but i dont understand your logic of why you would want to do that, are you trying to persist data?