JSON (JavaScript Object Notation) is a lightweight data exchange format inspired by JavaScript object literals. It is often used with JavaScript, Ajax, and RESTful web services but is completely language independent. You can read the specification or find adapters [on the official JSON ...
2
votes
1answer
19 views
getting mergJSON to work in the iOS simulator - Livecode
I'm trying to use mergJSON in a Livecode project, but am having some trouble getting it to work outside of the IDE. The steps I've taken so far are:
Download the git project
Build the Xcode Project ...
2
votes
1answer
32 views
json format to csv format conversion, special case
I have a json file whose rows are in the format as follows:
{"checkin_info": {"11-3": 17, "8-5": 1, "15-0": 2, "15-3": 2, "15-5": 2, "14-4": 1, "14- 5": 3, "14-6": 6, "14-0": 2, "14-1": 2, "14-3": ...
1
vote
1answer
20 views
DataContractJsonSerializer' is not defined in wcf .asmx.vb file
'DataContractJsonSerializer' is not defined.
Imports System.Runtime.Serialization.Json 'giving error in this namespace
This namespace is working on my local host bu not on the server
For this i ...
4
votes
1answer
138 views
JSON parser in PascalScript
Is there a JSON parser written in standard, procedural Pascal? There are a couple of object-oriented implementations in Delphi, but I need to do the parsing in PascalScript, and unfortunately classes ...
-1
votes
2answers
49 views
Convert this python dictionary into JSON format? [duplicate]
I have a python dictionary which I want to convert into json.
Python dictionary:
{"20090209.02s1.1_sequence.txt": [645045714, 3559.6422951221466, 206045184], "20090209.02s1.2_sequence.txt": ...
0
votes
1answer
29 views
How i have to get the id in JSON after click the button and want to send that id again in post method
Actually i am parsing in json id,content,title,count.But i dont want to display id,but after click the button it has to get the id value and i have to send that id to the server side.
this is my json ...
1
vote
2answers
20 views
Extracting data from Wikipedia API
I would like to be able to extract a title and description from Wikipedia using json. So... wikipedia isn't my problem, I'm new to json and would like to know how to use it. Now I know there are ...
-1
votes
2answers
57 views
Javascript calls to a php webserver [closed]
I've got a huge problem in my app. I have got an application that connects to a php webservice and gets some data back when I press a button. The only problem is, my service isn't responding to me and ...
0
votes
0answers
25 views
Can i send one single parameter to php with a JSONParser?
I'm a noob in this Android world... Sorry if my question sounds silly.
I'm trying to get a listview from mysql database using JSON in php. The php file sould only receive one parameter but i have ...
0
votes
2answers
31 views
Is there an equivalent to SimpleXML for parse JSON on Android?
I am trying to parse a JSON directly from a predefined object. The SimpleXML library can do this thing perfectly but for XML files.
Is it therefore a library that can do this on Android?
0
votes
5answers
41 views
How to filter the object what we want from json data..?
I am getting the response from backend, it return the json data.
But I need to pass the object separately to "handlebars.js" - templates.
In this case, how do I iterate the json response and filter ...
0
votes
1answer
19 views
webmethod return values form base class
{"__type":"CountryModel","dt":null,"ds":null,"dtRow":null,"strSQL":{"Capacity":16,"MaxCapacity":2147483647,"Length":0},"iCnt":0,"ConnType":"FP","Code":"AE","Value":"United Arab ...
0
votes
2answers
52 views
Unable to output from JSON file - Backbone
Trying to fetch JSON data when the div is clicked, but not able to see the output. I am using Backbone Collection to pull json data. Tried to output json data to console and also within another div. ...
2
votes
2answers
46 views
Javascript - Running a function that is stored in a JSON property
I have a JSON object, like this:
var JSON =
[
{
"cat_function":"(function(){console.log('ITS HAPPENING');})();"
}
]
JSON[0].cat_function;
From my script, I need to load in the function ...
0
votes
3answers
50 views
JSON get the first index name
I am trying to detect first index name from my JSON object and this data come from API ..
if success data will return something like this :
var setRecharge = ...
1
vote
2answers
36 views
How to receive JSON string?
I am using ASP.NET WEB API.
I want to receive and add to database jsonstring.
My model:
namespace sms.Models
{
[JsonObject]
public class MySMS
{
//[JsonProperty("id")]
...
0
votes
0answers
25 views
Post json data to API rest Django via javascript
I'm trying to post some data to an API (Django REST Framework)
I have reading that:
"how to include CSRF tokens in AJAX requests."
But the code above still not working...it gives a FORBIDDEN 403 ...
1
vote
1answer
29 views
Place Anchor Tag inside JQuery JSON
i have jquery syntax to consume json list from database.
here's the code
$(document).ready(function () {
//function to get the result from user-input
$("#btnsearch").click(function() {
...
1
vote
1answer
41 views
JSON Rendering key data not found
I have a JSON string like this:
{"{\"nodeName\":\"abc\"}":[{"url":"abc","status":true},{"url":"abc","status":true}]," ...
0
votes
3answers
64 views
JSON Loop through nested array
This is my JS ("data" is from the json call):
if (data.projectReports.length) {
for (var i in data.projectReports){
var report = data.projectReports[i];
$('#reports').append(
...
1
vote
1answer
22 views
Sending a Post request with net/http
I need to send data in JSON to another app which runs on the same computer.
I send request like so (rails 3.2.13 )
data = { //some data hash }
url = URI.parse('http://localhost:6379/api/plans')
...
0
votes
1answer
37 views
Need some help to write json for multilevel listview. ^^
I am trying to implement a multilevel listview in my application (android based). I am using php and mysql together with eclipse.
For the first level listview, this is the json (filename:test1.php):
...
0
votes
1answer
30 views
Make iPhone to send URLEncoded string instead of JSON
I have a Symfony2 server that receives HTTP POSTs from JQuery using:
var myJSON = {key1: "value1", key2: ["value2", "value3"]};
$.post(myURL, {myJSON}, function(json){}, "json");
This works perfect ...
0
votes
2answers
45 views
json loaing dictionary from a file
I have a file contains dictionary:
{
"A": 1,
"B": 2,
"C": 3,
}
I try to load the dictionary in json object with:
fp = open('config.txt', 'r')
...
0
votes
1answer
29 views
Not able to get the html data from Json using Jquery with Handlebars.js template
I am having a json file, which has the json data like this :
{
"username":"lgangula",
"message":""
}
in the data.json file
i am getting the file, using jquery ajax method and appending the ...
0
votes
2answers
43 views
How to Deserialize using GSON?
How to deserialize the following response from server using GSON in Android?
I want to deserialize the following code and store the data in a java class instance using JsonReader.
{
...
0
votes
0answers
16 views
Best way to render pretty JSON for my API
I'm actually using a stack composed of Rails-API, Oj, ActiveModel::Serializer and I would like to display well indented JSON, à la JSON.generate(). But I don't want to repeat this call to ...
0
votes
2answers
54 views
Single JSON to Fetch Multiple Records
I am using this tutorial : http://www.androidhive.info/2012/10/android-multilevel-listview-tutorial/
here he created 3 different JSONs,
First, to fetch list of Albums
Second, to fetch list of ...
0
votes
2answers
50 views
parsing JSON and appending in to list, what is best approach, Knockout.JS or JQuery?
I have came across one situation where I have to decide whether to use Knockout.JS or traditional Jquery way..
I have JSON with number of objects inside. I have to parse JSON and append values from ...
1
vote
0answers
9 views
Dropdown list from google spreadsheet
This fiidle have a sample dropdown list which data is comes from hard coded json format as given below.
var data = [
{
"department": "IT",
"subject": [
{
...
0
votes
0answers
23 views
GET DATA FROM LOCAL STORAGE
I need some help to retrieve data from local storage.For my code, if the system is offline for little time span i am able to get data which is saved in local storage. But if the system is offline for ...
0
votes
0answers
11 views
Deserialization of XML
I have used the following commands to serialize and deserialize ExpandoObjects:
serialize:
JsonFx.Xml.XmlWriter XMLwriter = new JsonFx.Xml.XmlWriter();
string serializedExpando = ...
2
votes
2answers
33 views
How to get a small string data from a website.
Can I retrieve a string data from a website of my own.? Actually I got an idea to prompt user to update my app if there is any new version available in the market.
For this, I have a website with the ...
0
votes
1answer
40 views
JSON is not declared error in IE8
I have problem figuring out how to get rid of the series of errors I receive while running my application in IE8 and earlier. First of the errors shows in jquery.mi.js script: "JSON not declared". ...
0
votes
0answers
10 views
Which JSON schema draft does the Jansson c library support?
similarly i would like to know which schema draft WJElement again a c library for JSON support. As in which schema version the two c libraries support.
0
votes
2answers
36 views
Create json Object by java from data of mysql
After getting data from mysql, I need your data export as JSON like the format as follows:
{"Thong tin":[{"Ngay":"2013-06-18","Tinh":"An Giang"},{"Ngay":"2013-06-17","Tinh":"Bình ...
-2
votes
2answers
68 views
JSON file parsing in java
Edited. Anyone know how to read the record in every new line. The below code can only read 1 sentence.
JSONParser parser = new JSONParser();
try
{
Object obj = parser.parse(new ...
1
vote
2answers
61 views
XMLHttpRequest cannot load is not allowed by Access-Control-Allow-Origin
I'm trying to get access to education.com API data. However, I keep receiving an error the error states:
XMLHttpRequest cannot load ...
0
votes
2answers
13 views
Android/Java: Can't find MultipartEntity class despite adding it to build path
I'm writing an app that lets a user choose a photo already on their phone and uploads it to a server. Unfortunately when I click the button to send the photo to the sever, in logcat I see:
Could not ...
1
vote
1answer
21 views
Processing hugely varied JSON data from Facebook Graph API news feed
OK so I have authenticated fine and understand JSON including how to process it with PHP...
http://php.net/manual/en/function.json-decode.php
But my issues are that the JSON data that the API ...
0
votes
3answers
41 views
Breezejs Uncaught TypeError: Converting circular structure to JSON
I have an ASP.Net MVC SPA using the Hot Towel template i.e. breezejs, knockout, entity framework (code first), durandal etc.
In my EF model I have a class named "Section" that has a self referencing ...
1
vote
1answer
18 views
Fluent Style interaction with JSON objects
I have a sample JSON object
{
"employees": [
{ "firstName":"John" , "lastName":"Doe" },
{ "firstName":"Anna" , "lastName":"Smith" },
{ "firstName":"Peter" , "lastName":"Jones" }
]
}
I am looking ...
0
votes
0answers
10 views
Can I overcome the inbuilt JSON length limit during serialisation of a GridView?
This is a very similar question to the one here but since that is now four years old I thought I wouldn't keep adding to it. I am also getting the error
Error during serialization or deserialization ...
0
votes
0answers
18 views
Using JSON populated list from django view
here is my view:
def dummy_method(request):
data = simplejson.dumps({'a': 1})
return render_to_response('test.html',data)
my javascript:
var request = $.ajax({
url: "test",
type: ...
0
votes
1answer
41 views
json_decode() expecting a string, I could only get an array
I'm using Slim Framework, trying to build a REST API. Long story short, I've been like for 4 hours looking for a solution for my problem, which it is that json_decode won't take as an argument the ...
0
votes
1answer
15 views
Cherrypy json_out module error in Ubuntu
I am trying to get Cherrypy to output json for a project and on my Mac adding the @cherrpy.tools.json_out() decorator is working a treat but on my Ubuntu 13.04 system I get this error.
Traceback ...
0
votes
1answer
18 views
TypeError _______________ is not a function when modifying JSON object
So I have some existing Javascript I'm working with. This is the existing JSON that is working (modified and simplified to keep things manageable):
{
"items": [
{
"id": "11",
...
0
votes
1answer
37 views
Autocomplete jquery Plugin not working ASP.Net MVC 4
-Hello Guys , I am trying to use autocomplete in jquery, this is my code :
-This action is placed on a controller named Agence in an area called Admin.
public JsonResult GetAgences(string term)
...
0
votes
2answers
12 views
Implementing uniqueness within AFNetworking
I'm trying to design a good architecture for uniqueness within AFNetworking. Consider the situation, for example, where a User can have many Things, and each thing has a symmetric to-one relationship ...
1
vote
1answer
45 views
Cannot Read Property Javascript
Cannot grab the follower count from the following URL. Shows up as blank. Am I grabbing the right parameters?
https://developer.foursquare.com/docs/explore#req=pages/search%3Fname%3DNintendo
...





