在gwt上解析json

发布于 2024-12-05 14:22:31 字数 486 浏览 0 评论 0原文

服务器在此 fromat 中返回 json:

{
"appTarget":
    {
        "id":"3",
        "teacher_id":"2",
        "class_code":"0000",
        "target_id":"2",
        "course_id":"1",
        "from_date":"2011-08-03",
        "to_date":"2011-09-16",
        "wpm":"30",
        "acc":"43",
        "success_per":"0",
        "name":"Basic Course"
    }
}

在 gwt 端,我创建了名为 JTarget 的 JS 覆盖类

,该类的属性与来自服务器的 json 相同。

我的问题是如何从传入的 json 文本初始化新的 JTarget 对象?

Server returns json in this fromat:

{
"appTarget":
    {
        "id":"3",
        "teacher_id":"2",
        "class_code":"0000",
        "target_id":"2",
        "course_id":"1",
        "from_date":"2011-08-03",
        "to_date":"2011-09-16",
        "wpm":"30",
        "acc":"43",
        "success_per":"0",
        "name":"Basic Course"
    }
}

On gwt side i created JS overlay class named JTarget

and this class's atributes are the same to th json which comes from server.

My question is how can I initialize new JTarget object from coming json text?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

时光清浅 2024-12-12 14:22:31

JsonUtils< /code>就是您要寻找的内容。

JTarget target = JsonUtils.safeEval(strFromServer);

(尽管我怀疑您的 JTarget 实际上是用于内部对象,因此您必须使用 JTarget getAppTarget() 属性为容器对象创建一个覆盖层)

JsonUtils is what you're looking for.

JTarget target = JsonUtils.safeEval(strFromServer);

(though I suspect your JTarget is actually for the inner object, so you'd have to create one overlay for the container object, with a JTarget getAppTarget() property)

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