Questions tagged «json»

JSON(JavaScript对象表示法)是一种文本数据交换格式,并且与语言无关。涉及此文本格式时,请使用此标签。请勿将本标签用于本地JAVASCRIPT对象或JAVASCRIPT对象文学。提出问题之前,请使用JSONLint(https://jsonlint.com)等JSON验证器来验证JSON。

10
Javascript如何解析JSON数组
我正在使用Sencha Touch(ExtJS)从服务器获取JSON消息。我收到的消息就是这个: { "success": true, "counters": [ { "counter_name": "dsd", "counter_type": "sds", "counter_unit": "sds" }, { "counter_name": "gdg", "counter_type": "dfd", "counter_unit": "ds" }, { "counter_name": "sdsData", "counter_type": "sds", "counter_unit": " dd " }, { "counter_name": "Stoc final", "counter_type": "number ", "counter_unit": "litri " }, { "counter_name": "Consum GPL", "counter_type": "number …
92 javascript  json  extjs 

5
用React漂亮地打印JSON
我正在使用ReactJS,我的应用程序的一部分需要漂亮的打印JSON。 我得到一些JSON,例如:{ "foo": 1, "bar": 2 },如果我JSON.stringify(obj, null, 4)在浏览器控制台中运行该代码,它会很漂亮地打印出来,但是当我在此反应代码段中使用它时: render: function() { var json = this.getStateFromFlux().json; return ( <div> <JsonSubmitter onSubmit={this.onSubmit} /> { JSON.stringify(json, null, 2) } </div> ); }, 它呈现看起来像的JSON格式"{ \"foo\" : 2, \"bar\": 2}\n"。 如何使这些字符正确解释?{

6
您的项目未引用“ .NETFramework,Version = v4.5”框架。
我正在使用VS 2015。 您的项目未引用“ .NETFramework,Version = 4.5”框架。在project.json的“框架”部分中添加对“ .NETFramework,Version = 4.5”的引用,然后重新运行NuGet restore。 添加到我的MVC层后不久,我在数据访问和业务逻辑层上收到此错误。直到那时一切都还不错,但是我不知道是什么触发了这个错误。这是我的project.json: { "version": "1.0.0-*", "description": "foo bar Class Library", "authors": [ "foo bar" ], "tags": [ "" ], "projectUrl": "", "licenseUrl": "", "frameworks": { "net451": { }, "dotnet5.4": { "dependencies": { "Microsoft.CSharp": "4.0.1-beta-23516", "System.Collections": "4.0.11-beta-23516", "System.Linq": "4.0.1-beta-23516", "System.Runtime": "4.0.21-beta-23516", "System.Threading": …

9
如何使用gson库将字符串转换为JsonObject
请建议如何将使用库转换String为JsonObject使用gson库。 我未成功执行的操作: String string = "abcde"; Gson gson = new Gson(); JsonObject json = new JsonObject(); json = gson.toJson(string); // Can't convert String to JsonObject
91 java  json  gson 


7
在JSON中,为什么每个名称都被引用?
JSON规范说JSON是对象或数组。如果是物体, 对象结构表示为一对大括号,包围着零个或多个名称/值对(或成员)。 名称是一个字符串。 ... 后来,规范说字符串用引号引起来。 为什么? 从而, {"Property1":"Value1","Property2":18} 并不是 {Property1:"Value1",Property2:18} 问题1:为什么不允许名称/值对中的名称成为未加引号的标识符? 问题2:使用Javascript进行评估时,上述两种表示形式在语义上有区别吗?
91 javascript  json 

3
使用Jackson的ObjectMapper的JSON对象的顺序
我正在使用ObjectMapper进行java-json映射。 ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter(); ow.writeValue(new File( fileName +".json"), jsonObj); 这是我的java类: public class Relation { private String id; private String source; private String target; private String label; private List<RelAttribute> attributes; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getSource() …
91 java  json  jackson 

4
使用jQuery动态创建每个输入值的JSON
我遇到了一种情况,我想通过PHP以JSON格式读取一些数据,但是在理解如何构造Javascript对象以动态创建JSON格式时遇到了一些问题。 我的情况如下: <input title="QA" type="text" class="email"> <input title="PROD" type="text" class="email"> <input title="DEV" type="text" class="email"> 到目前为止,我拥有的Javascript代码会通过每个输入获取数据,但是我无法理解如何从这里开始进行处理。 var taskArray = {}; $("input[class=email]").each(function() { var id = $(this).attr("title"); var email = $(this).val(); //how to create JSON? }); 如果可能,我想获得以下输出。 [{title: QA, email: 'a@a.com'}, {title: PROD, email: 'b@b.com'},{title: DEV, email: 'c@c.com'}] 通过输入字段值获取电子邮件的位置。
91 javascript  jquery  html  json 

12
在Spring中配置ObjectMapper
我的目标是配置objectMapper方式,使其仅序列化带有注释的元素@JsonProperty。 为了做到这一点,我按照以下说明进行了说明,该说明说明了如何配置对象映射器。 我包括自定义描述objectmapper这里。 但是,当类NumbersOfNewEvents被序列化时,它仍包含json中的所有属性。 有人暗示吗?提前致谢 杰克逊1.8.0春季3.0.5 CustomObjectMapper public class CompanyObjectMapper extends ObjectMapper { public CompanyObjectMapper() { super(); setVisibilityChecker(getSerializationConfig() .getDefaultVisibilityChecker() .withCreatorVisibility(JsonAutoDetect.Visibility.NONE) .withFieldVisibility(JsonAutoDetect.Visibility.NONE) .withGetterVisibility(JsonAutoDetect.Visibility.NONE) .withIsGetterVisibility(JsonAutoDetect.Visibility.NONE) .withSetterVisibility(JsonAutoDetect.Visibility.DEFAULT)); } } servlet.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <context:component-scan base-package="de.Company.backend.web" /> <mvc:annotation-driven /> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> …

3
如何使用String创建JSON对象?
我想使用String创建一个JSON对象。 示例:JSON {"test1":"value1","test2":{"id":0,"name":"testName"}} 为了创建上述JSON,我正在使用它。 String message; JSONObject json = new JSONObject(); json.put("test1", "value1"); JSONObject jsonObj = new JSONObject(); jsonObj.put("id", 0); jsonObj.put("name", "testName"); json.put("test2", jsonObj); message = json.toString(); System.out.println(message); 我想知道如何创建一个具有JSON数组的JSON。 以下是示例JSON。 { "name": "student", "stu": { "id": 0, "batch": "batch@" }, "course": [ { "information": "test", "id": "3", "name": "course1" } …
91 java  android  json 

4
协议缓冲区与JSON或BSON的比较[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 11个月前关闭。 改善这个问题 是否有人对协议缓冲区,BSON(二进制JSON)或JSON的性能有任何了解? 电线尺寸 序列化速度 反序列化速度 这些似乎是通过HTTP使用的良好二进制协议。我只是想知道从长远来看,对于C#环境哪个更好。 这是我正在阅读的有关BSON和协议缓冲区的一些信息。

6
在POST中将JSON发送到Web API服务时出错
我正在使用Web API创建Web服务。我实施了一个简单的课程 public class ActivityResult { public String code; public int indexValue; public int primaryCodeReference; } 然后我在控制器内部实现了 [HttpPost] public HttpResponseMessage Post(ActivityResult ar) { return new HttpResponseMessage(HttpStatusCode.OK); } 但是,当我调用POST中传递的API时,文件为json: {"code":"XXX-542","indexValue":"3","primaryCodeReference":"7"} 我收到以下错误消息: { "Message": "The request entity's media type 'text/plain' is not supported for this resource.", "ExceptionMessage": "No MediaTypeFormatter is available to …

6
用R解析JSON
我对R相当陌生,但是使用得越多,我看到的就比SAS或SPSS强大得多。我看到的主要好处之一就是能够从Web上获取和分析数据。我想这是可能的(甚至可能很简单),但是我正在寻找解析Web上公开可用的JSON数据的方法。我决不是一名程序员,因此,您能提供的任何帮助和说明将不胜感激。即使您为我指出了一个基本的工作示例,我也可能会完成它。
90 json  r 

5
如何在symfony2控制器中发送JSON响应
我正在jQuery编辑内置的表单Symfony。 我在jQuery对话框中显示表单,然后提交。 数据已正确输入数据库。 但是我不知道是否需要发一些JSON回jQuery。其实我对JSON事情有点困惑。 假设我在表中添加了``jQuery,并且当我提交表单时,然后在提交数据之后,我想发回那些行数据,以便我可以动态添加表行以显示添加的数据。 我很困惑如何获取这些数据。 这是我当前的代码: $editForm = $this->createForm(new StepsType(), $entity); $request = $this->getRequest(); $editForm->bindRequest($request); if ($editForm->isValid()) { $em->persist($entity); $em->flush(); return $this->render('::success.html.twig'); } 这只是带有成功消息的模板。
90 php  javascript  json  symfony 

7
用Jackson序列化枚举
我下面有一个枚举: public enum OrderType { UNKNOWN(0, "Undefined"), TYPEA(1, "Type A"), TYPEB(2, "Type B"), TYPEC(3, "Type C"); private Integer id; private String name; private WorkOrderType(Integer id, String name) { this.id = id; this.name = name; } //Setters, getters.... } 我用控制器(new OrderType[] {UNKNOWN,TYPEA,TYPEB,TYPEC};)返回枚举数组,Spring将其序列化为以下json字符串: ["UNKNOWN", "TYPEA", "TYPEB", "TYPEC"] 强迫Jackson像POJO一样序列化枚举的最佳方法是什么?例如: [ {"id": 1, "name": …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.