使用 Jayrock 返回对象
我正在使用 Jayrock 在 .NET 中为我的 iOS 应用程序形成一个 Web 服务,并且我正在关注 本教程。 这一切都很好,我可以让它正常工作返回基本字符串使用像这样的代码:
[Jayrock.JsonRpc.JsonRpcMethod("Echo")]
[Jayrock.JsonRpc.JsonRpcHelp("Simple echo method, takes string input and returns it")]
public string Echo(string input)
{
return input;
}
在编写实际的 Web 服务时,如何让它返回带有数字和数组等的自定义 JSON 对象?如果你也能给出一个代码示例那就太棒了。
我在谷歌上进行了搜索并在这里进行了搜索,但并没有真正找到对我有帮助的东西。我知道这是一个基本问题,但我完全被难住了!
I am using Jayrock to form a web service in .NET for my iOS app and I'm following this tutorial. This is all good and I can get it to work fine returning basic strings using code like this:
[Jayrock.JsonRpc.JsonRpcMethod("Echo")]
[Jayrock.JsonRpc.JsonRpcHelp("Simple echo method, takes string input and returns it")]
public string Echo(string input)
{
return input;
}
When it comes to writing my actual web service, how to I get it to return a custom JSON object with numbers and arrays etc? If you could give a code example too that would be awesome.
I've had a google around and a search here, but haven't really been able to find much that helps me. I know it's a basic question, but I'm totally stumped!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在都整理好了。我只需要定义一个类并从函数返回一个对象,如下所示:
All sorted now. I just needed to define a class and return an object from the function, like this: