热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

MobileFirst-接听WS(JAX-RS)的呼叫-MobileFirst-AnsweringacalltoaWS(JAX-RS)

Ihaveajavaadapter(JAX-RS)thatreturnsaPOJO,oneoftheattributesiscalledvalidateUserand

I have a java adapter (JAX-RS) that returns a POJO, one of the attributes is called validateUser and is a boolean value. I want to get the value of this boolean when called from main.js

我有一个返回POJO的java适配器(JAX-RS),其中一个属性叫做validateUser,是一个布尔值。我想从main.js调用时获取此布尔值

It should work like this (main.js):

它应该像这样工作(main.js):

onGetLoginSuccess function (response)
busy.hide ();
alert ("validate:" + response ["validateUser"]);

As I can get the value in the variable response, the validateUser attribute my POJO.

因为我可以获得变量响应中的值,所以我的POJO是validateUser属性。

Thank you for your attention

感谢您的关注

1 个解决方案

#1


You can use alert(response.responseJSON.validateUser);

你可以使用alert(response.responseJSON.validateUser);

In general to examine the structure of "response" you could do something like: alert(JSON.stringify(response)); It could help you to understand which fields are available and how can you find this validateUser.

通常,要检查“响应”的结构,您可以执行以下操作:alert(JSON.stringify(response));它可以帮助您了解哪些字段可用,以及如何找到此validateUser。

It is also important to make sure that your JAX-RS adapter returns JSON content type. Make sure that you have the annotation: @Produces("applicaion/json") in your JAX-RS method that returns this POJO

确保JAX-RS适配器返回JSON内容类型也很重要。确保您的JAX-RS方法中有注释:@Produces(“applicaion / json”),它返回此POJO


推荐阅读
author-avatar
疯子zls_565
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有