使用 Jayrock 返回对象

发布于 2024-12-08 13:58:42 字数 603 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月野兔 2024-12-15 13:58:42

现在都整理好了。我只需要定义一个类并从函数返回一个对象,如下所示:

[Jayrock.JsonRpc.JsonRpcMethod("GetPerson")]
public object GetPerson(string name, int age)
{
    person foo = new person(name, age);
    return foo;
}

public class person
{
    public string Name;
    public int Age;
    public person() { }
    public person(string name, int age)
    {
        Name = name;
        Age = age;
    }
}

All sorted now. I just needed to define a class and return an object from the function, like this:

[Jayrock.JsonRpc.JsonRpcMethod("GetPerson")]
public object GetPerson(string name, int age)
{
    person foo = new person(name, age);
    return foo;
}

public class person
{
    public string Name;
    public int Age;
    public person() { }
    public person(string name, int age)
    {
        Name = name;
        Age = age;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文