使用 jQuery 的结果到 C# 中
我在 jquery 中有这个函数,它有结果数组,以及如何将此结果数组转换为 C# 代码。任何人都可以帮助我解决这个问题。
function generateData() {
var result = $('#accordion').sortable('toArray');
}
I have this function in jquery which has the result array and how can I get this result array to C# code. Can anyone help me regarding this.
function generateData() {
var result = $('#accordion').sortable('toArray');
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过脚本中的 Web 方法调用异步执行此操作,这样您就可以适当地定义 Web 方法,然后根据需要调用并处理数据和潜在的返回值。例如:
定义一个 Web 方法:
定义一个可重用的 jQuery 脚本方法来处理 Web 方法调用:
当然,还有调用本身:
当然,我们现在需要确保我们的回调方法存在:
You could do this asynchronously through a web method call from script, such that you define a web method appropriately, then call and handle the data and potential return value, as desired. For example:
Defining a web method:
Defining a reusable jQuery script method to handle web method calls:
And, of course, the call itself:
Naturally we now need to make sure our callback methods exist:
使用隐藏字段来存储结果。
JQuery
C#
请注意,隐藏字段仅保存一个字符串,因此您可能需要使用某种分隔符来分隔数组对象。
Use a hiddenfield to store the result..
JQuery
C#
Note that a hiddenField only holds a string, so you might need to use some kind of seperator to seperate your array objects..