是否可以将结果集从 WebMatrix.Database.Query() 转换为 XML 字符串?
我想使用 jQuery 脚本在客户端使用结果集,但是除了手动构建 XML DOM 字符串(我希望避免这样做)之外,我不确定如何将其转换为 XML。有没有一种自动方法来转换它或将其获取为 XML 字符串?
I'd like to consume the result set on the client side using a jQuery script, however I'm uncertain how to convert it to XML, other than building the XML DOM string manually, which I'd prefer to avoid. Is there an automatic way to convert it or obtain it as an XML string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有许多用于生成 XML 的 API,包括 Linq TO XML。但是,如果您想让 jQuery 可以使用服务器端数据,我会将其序列化为 JSON。 JSON 助手 非常适合此目的。
There are a number of APIs for generating XML, including Linq TO XML. However, I would serialize your server side data to JSON if you want to make it available to jQuery. The JSON helper is perfect for this.