JSON (JavaScript Object Notation) is a data exchange format and is often used with JavaScript, Ajax, and RESTful web services.
0
votes
1answer
20 views
javascript: How do I convert Uint8Array data to a JS object
I am new to both Javascript and JSON worlds. I am wondering how I could convert an incoming Uint8Array data () to a JS object?
Any help / pointers please. Here's what I have done as an experiment.
// ...
0
votes
1answer
43 views
Javascript - reading arrays from JSON
I am working with an API that is returning data in JSON format. An example of a response is this
{
"code": 200,
"count": 4,
"currentPage": 1,
"date": "2013-05-24T09:19:37.964+1000",
...
0
votes
0answers
16 views
How to access the JSON's multi-level objects with jQuery
In CodeIgniter, in PHP to create a nested-like elements for dropdown <select> I'am using this function:
function list_categories(&$result, $cats, $sub = ''){ // <- THIS
...
-2
votes
1answer
15 views
How can I show the column names in my JSON file format? (Through ColdFusion)
Through the following ColdFusion .cfm file, I am able to get a .json string, which shows me the requested data:
json1.cfm
<cfsetting showdebugoutput="no">
<cfheader name="Content-Type" ...
0
votes
1answer
14 views
Add a single attribute to a model's Json
I have the following code in one of my controllers;
render :json => Article.order("ID Desc").limit(3)
Which outputs an array of articles like:
[{"id":1, "content":"Blah"},{"id":2, ...
0
votes
1answer
18 views
Any free json data upload website to test JSFiddle?
I have couple of different json data (dynamically load) to test JSFiddle. Is there any free service to upload which retuns json format?
0
votes
0answers
3 views
Requestiong JSON infromation from API. Cornoa
Im trying to make an app where i will gather information from a json api http://pool-x.eu/api, and print information easly bo choosing paramter.
What is the easiest way to print each of the ...
0
votes
3answers
43 views
Accessing and iterating json in javascript
I'm running a HTML file which comes up with an error "Uncaught TypeError: Cannot read property '0' of undefined"
My javascript code is
function loadHeatMap(){
xhr=new XMLHttpRequest();
...
0
votes
1answer
44 views
How to parse date time from json?
I have a Action Method like this
public ActionResult TodayJson()
{
DateTime today = DateTime.Today;
return Json(today,JsonRequestBehavior.AllowGet);
}
that ...
0
votes
0answers
6 views
Three.js: Load JSON file to be viewed in
i have a question regarding putting a 3dModel from Blender to a Three.js page.
I have created a 3D Human model in blender. I can export it using the 2.66 three.js-export plugin for blender.
When I ...
-1
votes
1answer
43 views
JSON String to Java object using GSON
I am trying to parse json to java.
I have the following string that is valid json according to jsonlint.com
private final static String LOC_JSON =
"["
+"{"
+" \"lat1\": ...
0
votes
0answers
14 views
Does anybody has an ajaxUploadFile.js that actually works with WCF exceptions or JSON struct returns?
I have been using the ajaxUploadFile.js script from http://www.phpletter.com/
but I have been having a hell of a time trying to catch the exceptions coming from my WCF service.
My problem is exactly ...
-4
votes
0answers
11 views
How to create a folder in SharePoint 2010 document library using REST [closed]
I have the exact requirement as in the post How to create a folder in SharePoint 2010 document library using REST or HTTP methods
But I could even make a connection to SharePoint using Java, has ...
0
votes
1answer
18 views
parse JSON to update listview in Android
I want to parse JSON in android I can parse one response while I am unable to parse the other one.
1) I am able to parse the following Web Service Response
[
{
"id": "763",
"title": ".46 ...
0
votes
0answers
25 views
Multiple nested jQuery Ajax Calls possible Bug?
On my current project I am using the Google Feed API to get mixed JSON/XML data for a feed. As I want to parse this data on my server before it gets shown to the user I made the following concept.
...
0
votes
1answer
19 views
NSJSONSerialization creating values of class NSCFConstantString?
I'm creating an NSDictionary from a valid JSON using NSJSONSerialization like this:
id result = [NSJSONSerialization JSONObjectWithData:response
...
1
vote
0answers
57 views
How can I get this kind of JSON file format from a SQL query? [closed]
You see, this is my issue:
I need to get a .json file from a SQL query. In order to do that, I use the following ColdFusion .cfm file:
<cfsetting showdebugoutput="no">
<cfheader ...
0
votes
0answers
20 views
Incomplete/malformed JSON sent on POST
I'm sending a dumped JSON over POST from and Android app. The vast majority of the times, everything works as expected. However, occasionally, the server will receive a malformed/incomplete JSON.
...
0
votes
0answers
15 views
Jersey and JSONConfiguration serialization an emplty list and single element list
I'm struggling with serialization an emplty list and single element list in Jersey for days now. I searched a lot I couldnt find a solution for my problem. I tried to fix it by adding ...
2
votes
2answers
41 views
Create JSON with multilevel
How is the multilevel JSON set up in this case?
var quiz = {};
for(var i = 0; i < questions.length; i++) {
quiz['Questions'] = {
Question: Question,
Answers: Answers,
Correct: ...
0
votes
0answers
18 views
URL json found in browser, no found jquery
I have made this function to treat data with json and I respond with an error 200.
with the error resulting in the url in the browser works, but if I make the call to that function with jquery not ...
1
vote
0answers
18 views
run three.js on server with a help of node.js, export model to json and load to end user through ajax
i have a javascript app, that i wrote,where i want to protect the drawing mechanism of the model and make mechanism not available to public.
So i come up with a solution, where i want to run ...
1
vote
5answers
21 views
Convert NSDictionary value (id?) to NSString or NSNumber to compare it
pls help me with my trouble:
I can't compare to value to know successful result was or not.
I fetch json-object as NSDictionaty:
NSDictionary *returnDictionary = [NSJSONSerialization ...
0
votes
0answers
26 views
Play 2.1(scala) - How to write Format[T] for scala enumeration case class
This question is related to the following two questions.
We wanted to use enumeration in a model in our play 2.1 application so we found the following question
How to write Reads[T] and Writes[T] in ...
0
votes
1answer
12 views
Jackson doesnt care for the order of elements put in the Map
I am using Jackson library to generate JSON.
I am passing an input map to the ObjectMapper
For eg. this is a code snippet of how I generate the map. I am adding groups,link,title to the Map. The ...
0
votes
2answers
28 views
Request URI too large (414)
I am sending a GET request via $.getJSON, and the data sent is really big. I need to get a result after the processing of my data, so POSTing it instead doesn't seem to be a solution. Any idea? The ...
0
votes
0answers
17 views
XML to JSON Serialization NewtonSoft General Data Format JToken Value
I'm using NewtonSoft to convert XML to JSON data.
With the following XML:
<NewDataSet>
<Student>
<ID>1</ID>
<Name>Alex</Name>
</Student>
...
0
votes
0answers
28 views
python requests module get method followed by json method getting stuck.
I am facing an issue with 'requests' module of python.
I have these three lines of code:
print '\n\nTrying to fetch Tweets from URL %s' % url
newTweets = requests.get(url).json()
print 'Fetched %d ...
-1
votes
1answer
35 views
Json encoded array issues [closed]
I'm trying to figure out what my issue is between the jQuery ajax call and the php return json encode.
When I look at the response in the console it shows...
...
-1
votes
3answers
40 views
python object containing a file in a list [closed]
I'm not looking for a solution here but just some hints in python techniques.
I'm not well experienced in python, but I prefer to learn doing actually something, instead to read tons of generic syntax ...
0
votes
0answers
33 views
How to use mega.co.nz API?
How to use mega.co.nz API?
I want to use MEGA API as explained here https://mega.co.nz/#developers
but I have no idea how to implement it in C#?
They basically use JavaScript as main engine and ...
0
votes
1answer
57 views
Issues in json.stringify in jquery
Here in the javascript code, when I invoke that function, this alert will print JSON, but it is missing some values. Totally there are 3 fields (group of 2), sometimes they will print like this:
...
0
votes
1answer
13 views
jqgrid undefined integer? pager not loading
IM using jqgrids on mvc4, I need to get a simple list and display it using Ajax.
When I load the page then grid starts an Ajax call, I have only 2 columns on grid, user_id and name.
When the Json is ...
2
votes
2answers
30 views
Create JSON correct from an each-loop
I'm trying to create a JSON tree out of an each loop, that get information from several id's on the page. Consider that each id has names like "textHolder1, textHolder2" etc.
...
8
votes
4answers
54 views
How to create an ActionController to work both at run time and with ajax
I have an AddressBook controller that will return a list of "folders" (basically groups / locations). This may be called via an AJAX request or within a MVC page itself at render time.
How can I ...
1
vote
1answer
22 views
Ember Data findAll() not populating models?
new to ember js, and working on an app using ember-data. If I test with same data using FixtureAdapter, everything populates in the html template ok. When I switch to RESTAdapter, the data looks like ...
0
votes
0answers
30 views
knockout js bootstrap datepicker
i know this question is asked lot of times before... but i have tried all the solutions and none of them are working.... hence asking again...
how do i bind the json date to knockout element... below ...
2
votes
0answers
48 views
Cannot recreate JSON value from JSON in string format
I have the following object:
public class TestModel
{
public object TestValue { get; set; }
}
My database contains strings in JSON format e.g.
["test value"]
["one value",["another value|or ...
0
votes
1answer
41 views
Django/Python control: “if form.is_valid ():” is equal to false if the form has an input type “button”
I don't understand why if I have in my html page in a form: <input type="submit" class="btn btn-small btn-primary" id="execute" value="Esegui">`
then the form is valid otherwise if I put a
...
0
votes
0answers
9 views
RoR API RABL collection to array
RABL Current Code :
object @region
attributes :id, :name, :latitude, :longitude, :region_id
child :sub_regions do
attributes :name
end
I get the following output :
{
"id": 1,
"name": ...
0
votes
1answer
15 views
Correct way to iterate through a Json structure in Javascript for locate google maps marker
I'd like to know why this function dont place any marker in my map.
im passing from my servlet to jsp an object marker that contains his title and the coordinate, this is a sample
...
0
votes
0answers
11 views
Parse complex JSON sub objects in C with YAJL
I have YAJL parsing me simple elements like given in the included example without a problem. (strings, integers, arrays, ...)
The example code can be found here: ...
0
votes
0answers
11 views
ASMX Webservice - The test form is only available for requests from the local machine
I have an ASMX webservice with two functions. One sends a JSON object to the server and stores it in a file, while the other function retrives the JSON object from the server. The webservice works ...
1
vote
2answers
36 views
Getting values from dynamic listview
So im getting values via json
JSONObject json = new JSONObject(result);
if(json.has("message"))
{
message = json.getString("message");
}
else
{
for (int i ...
0
votes
1answer
28 views
Rails with jQuery + AJAX fundamentals
I've been given a task to do a simple Task Manager on Ruby On Rails. It's pretty simple for me but there is one issue. Everything has to be "ajaxified" and data should be passed around in JSON.
How I ...
0
votes
2answers
38 views
JSON date to NSDate Issue
I have a date string in JSON format, it looks like this:
2013-05-22T10:54:40.437
And I'm trying to convert it to NSDate.
- (NSString *)dateFromString:(NSString *)datestring{
// Convert string to ...
0
votes
0answers
12 views
Gson: can we get the serialized field name in a type adapter?
I've seen that the default TypeAdapter for Enum doesn't fit my need:
private static final class EnumTypeAdapter<T extends Enum<T>> extends TypeAdapter<T> {
private final ...
2
votes
1answer
37 views
Looping through a JSON element in AngularJS
I have the following ng-repeat code:
<li ng-repeat="vid in vids | filter:query | orderBy:orderProp">
{{vid.title}}
</li>
My question is, can I loop through vids and print out ...
1
vote
1answer
39 views
one of JSON values returns unidentified with JavaScript
I need to retrieve email field from JSON with JavaScript.
Here is the code:
"contacts": [
{
"addedAt": 1332358711001,
"vid": 1,
...
0
votes
3answers
39 views
JSON.stringify() is this object and function standard to javascript?
I have never seen it before until today and it seems to just work without including any .js or framework. is this a standard object in javascript? if so where can I find the documentation for it and ...





