Questions tagged «json»

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

4
如何使用$ .ajax发送JSON而不是查询字符串?
有人可以用一种简单的方式解释如何使jQuery发送实际的JSON而不是查询字符串吗? $.ajax({ url : url, dataType : 'json', // I was pretty sure this would do the trick data : data, type : 'POST', complete : callback // etc }); 实际上,这会将您精心准备的JSON转换为查询字符串。令人讨厌的事情之一是,array: []对象中的任何内容都将转换为array[]: [],这可能是由于查询字符串的限制所致。

6
json.load()和json.loads()函数有什么区别
在Python中,json.load()和之间有什么区别json.loads()? 我猜想load()函数必须与文件对象一起使用(因此,我需要使用上下文管理器),而load()函数将文件路径作为字符串。这有点令人困惑。 字母“ s ” json.loads()代表字符串吗? 非常感谢你的回答!
172 python  json  python-2.7 

6
在Java中将XML转换为JSON的最快方法
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使它成为Stack Overflow 的主题。 5年前关闭。 改善这个问题 有什么好的工具可以在Java中快速轻松地将XML转换为JSON?
171 java  xml  json 

14
POST JSON失败,出现415不支持的媒体类型,Spring 3 mvc
我正在尝试向Servlet发送POST请求。通过jQuery通过以下方式发送请求: var productCategory = new Object(); productCategory.idProductCategory = 1; productCategory.description = "Descrizione2"; newCategory(productCategory); newCategory在哪里 function newCategory(productCategory) { $.postJSON("ajax/newproductcategory", productCategory, function( idProductCategory) { console.debug("Inserted: " + idProductCategory); }); } 而postJSON是 $.postJSON = function(url, data, callback) { return jQuery.ajax({ 'type': 'POST', 'url': url, 'contentType': 'application/json', 'data': JSON.stringify(data), 'dataType': 'json', 'success': callback }); …

14
序列化类型为'SubSonic.Schema .DatabaseColumn'的对象时,检测到循环引用。
我正在尝试做一个简单的JSON返回,但是我遇到以下问题。 public JsonResult GetEventData() { var data = Event.Find(x => x.ID != 0); return Json(data); } 我得到一个HTTP 500,但此问题的标题中显示了例外。我也试过 var data = Event.All().ToList() 那也带来了同样的问题。 这是错误还是我的实现?

7
您如何在Node.js中记录JSON对象的内容?
是否可以在Node.js中打印对象内容,例如方法和属性? 目前,我正在尝试打印会话对象并获取以下内容: console.log("Session:" + session); > Session:[object Object] 也许以类似于PHP中的print_r(array)的方式,或者以Java中的.toString来使用。
170 json  node.js 

20
使用Python将XML转换为JSON吗?
我在网络上看到了相当多的不费钱的XML-> JSON代码,并且与Stack的用户进行了一些互动,我坚信这一人群比Google搜索结果的前几页可以提供更多帮助。 因此,我们正在解析一个天气供稿,我们需要在许多网站上填充天气小部件。我们现在正在研究基于Python的解决方案。 这个公共weather.com RSS feed是我们要解析的一个很好的例子(由于有w / them的合作关系,我们实际的weather.com feed包含其他信息)。 简而言之,我们应该如何使用Python将XML转换为JSON?
170 python  json  xml  converter 

14
Swift 3 URLSession.shared()成员'dataTask(with:completionHandler :)的引用不正确(bug)
您好,我有swift2.2的json解析代码,但是当我将其用于Swift 3.0时,出现了该错误 ViewController.swift:132:31:成员'dataTask(with:completionHandler :)'的引用不明确 我的代码在这里 let listUrlString = "http://bla.com?batchSize=" + String(batchSize) + "&fromIndex=" + String(fromIndex) let myUrl = URL(string: listUrlString); let request = NSMutableURLRequest(url:myUrl!); request.httpMethod = "GET"; let task = URLSession.shared().dataTask(with: request) { data, response, error in if error != nil { print(error!.localizedDescription) DispatchQueue.main.sync(execute: { AWLoader.hide() }) return } do …
169 ios  json  swift3 

7
将数据从JSON文件导入R
有没有办法将数据从JSON文件导入R?更具体地说,该文件是带有字符串字段,对象和数组的JSON对象的数组。关于如何处理此http://cran.r-project.org/web/packages/rjson/rjson.pdf,RJSON软件包尚不清楚。
166 json  r 

10
如何从JavaScript中的URL获取JSON?
此URL返回JSON: { query: { count: 1, created: "2015-12-09T17:12:09Z", lang: "en-US", diagnostics: {}, ... } } 我尝试了一下,但没有成功: responseObj = readJsonFromUrl('http://query.yahooapis.com/v1/publ...'); var count = responseObj.query.count; console.log(count) // should be 1 如何从该URL的JSON响应中获取JavaScript对象?
166 javascript  json 

9
使用Jackson将Java对象转换为JSON
我希望我的JSON看起来像这样: { "information": [{ "timestamp": "xxxx", "feature": "xxxx", "ean": 1234, "data": "xxxx" }, { "timestamp": "yyy", "feature": "yyy", "ean": 12345, "data": "yyy" }] } 到目前为止的代码: import java.util.List; public class ValueData { private List<ValueItems> information; public ValueData(){ } public List<ValueItems> getInformation() { return information; } public void setInformation(List<ValueItems> information) { this.information …
166 java  json  object  jackson 

20
将对象字符串转换为JSON
如何使用JavaScript(或jQuery)将描述对象的字符串转换为JSON字符串? 例如:转换这个(不是有效的JSON字符串): var str = "{ hello: 'world', places: ['Africa', 'America', 'Asia', 'Australia'] }" 到这个: str = '{ "hello": "world", "places": ["Africa", "America", "Asia", "Australia"] }' eval()如果可能,我希望避免使用。
165 javascript  json  object 

8
使用Jackson将JSON字符串转换为Pretty Print JSON输出
这是我拥有的JSON字符串: {"attributes":[{"nm":"ACCOUNT","lv":[{"v":{"Id":null,"State":null},"vt":"java.util.Map","cn":1}],"vt":"java.util.Map","status":"SUCCESS","lmd":13585},{"nm":"PROFILE","lv":[{"v":{"Party":null,"Ads":null},"vt":"java.util.Map","cn":2}],"vt":"java.util.Map","status":"SUCCESS","lmd":41962}]} 我需要将上述JSON String转换为Pretty Print JSON Output(使用Jackson),如下所示: { "attributes": [ { "nm": "ACCOUNT", "lv": [ { "v": { "Id": null, "State": null }, "vt": "java.util.Map", "cn": 1 } ], "vt": "java.util.Map", "status": "SUCCESS", "lmd": 13585 }, { "nm": "PROFILE "lv": [ { "v": { "Party": null, "Ads": null }, "vt": …

9
PHP致命错误:调用未定义函数json_decode()
Apache正在记录日志PHP Fatal error: Call to undefined function json_decode()。经过一番谷歌搜索,似乎这个问题是由于没有最新版本的php导致的。奇怪的是,运行php --version输出 PHP 5.5.1-2+debphp.org~precise+2 (cli) (built: Aug 6 2013 10:49:43) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies with Zend OPcache v7.0.2-dev, Copyright (c) 1999-2013, by Zend Technologies with Xdebug v2.2.3, Copyright (c) 2002-2013, by Derick Rethans …
165 php  json  apache  ubuntu 

13
如何检查json键是否存在?
因此,我从服务器获取了一些JSON值,但我不知道是否会有特定的字段。 像这样: { "regatta_name":"ProbaRegatta", "country":"Congo", "status":"invited" } 有时,还会有一个额外的字段,例如: { "regatta_name":"ProbaRegatta", "country":"Congo", "status":"invited", "club":"somevalue" } 我想检查是否存在名为“ club”的字段,以便在解析时不会得到org.json.JSONException:club的值
165 java  android  json 

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.