我可以专门使用 ASP.NET MVC3 作为 RESTful Web 服务吗?
我正在构建一个只读 sencha-touch< /a> 我们当地教堂的应用程序。
我们使用 Vimeo 托管所有视频,我想将 Vimeo 视频以及 RSS 源集成到我们的网络应用程序中。
应用程序中的其余“内容”将是静态“信息”以及联系表单。
我的问题是,仅使用 ASP.NET MVC3(减去“V”)将 JSON 驱动到我们的 Web 应用程序是否合理?
I'm building a READ ONLY sencha-touch app for our local church.
We use Vimeo to host all of our videos, and I'd like to integrate our Vimeo vids as well as our RSS feed into our web app.
The rest of the "content" in the app will be static "info" as well as a contact form.
My question is, is it kosher to ONLY use ASP.NET MVC3 (minus the "V") to drive the JSON to our web app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这很好用。只需返回一个 JsonResult 即可。
这是我在生产中使用的一个示例:
Yes, this works great. Just return a JsonResult.
Here is an example I am using in production: