Tagged Questions
0
votes
1answer
23 views
Pass image from sql to C# then to JSON service
I have a sql image field that I add to a dataTable. I then pass this image to a Json call. In the json call when trying to get the image I get the following
image_returnset[0].Picture holds the value ...
1
vote
1answer
26 views
filter json for matching schedule
Given the following json, how do I filter it to extract and return the relevant objects where that object's session matches the current time "now" to the next 3 hours? (Meaning, if my current time is ...
0
votes
2answers
33 views
JavaScript: JXON conversion, is there a reason for the “@”?
I have an XML like this:
<calendar>
<month year="2013" num="5">
<day num="1">
</month>
</calendar>
that I convert to JSON via MDNs JXON Snippet 3. ...
0
votes
0answers
20 views
QT qnetworkaccessmanager vs webkit ajax
I'm a beginner.
Worked very hard in finding a good solution.
I would like a large, concrete help in finding cash from qnetworkaccessmanager using the QT Creatorze or using ajax in webkicie built in ...
1
vote
2answers
45 views
Cannot access sub object of returned JSON object
I might just be blind or something, but I really cannot figure out why I cannot access a sub object of a returned $Resource object that retrieved a bunch of JSON objects.
Resource
> $resolved: ...
1
vote
1answer
38 views
Passing data in HTML data attribute using JSON
I'm trying to pass and retrieve JSON data in a hidden variable and coming up against a strange situation. I've been racking my brains and searching everywhere to find out why - I'm sure its something ...
0
votes
1answer
36 views
Escape single quotes in Jquery AJAX request
I am using JQuery AJAX to pass data to my service and if I type a message with single quotes, it prematurely ends the query string and my AJAX request won't work. Is there a good way to handle this ...
0
votes
0answers
45 views
reading from getJSON does not work
I am trying to get data using getJSON. However, it is not working.. my getjson.php returns ["1","3","1",0] but when I use getJSON it's not working and I don't even get an alert. What's wrong with this ...
0
votes
1answer
54 views
How to use JSON to make an Array local then parse it into a page
I need to use Local Storage for a class and I'm using JSON's stringify function to do this. I am trying to parse it out but it isn't working for some reason. When I use my if statement the ct2 and cn2 ...
0
votes
1answer
56 views
jquery: Auto-refresh highcharts
How can I auto-refresh highcharts every second with data retrieved from a mysql database using PHP and javascript? This is my code. I don't know much about Javascript. I have looked into other ...
0
votes
1answer
13 views
How to separate JSON data from ArrayBuffer receiving from websocket
I tried unsuccessful to separate JSON data from an array of buffer receiving from websocket which look like this.
{"type":"string","data":{"UklGRkIjAABXRUJQVlA4IDYjAACQswCdASqrAfAAPm0wlUemI"}}
...
0
votes
0answers
41 views
Why can I not retrieve a JSON file generated by a webservice using jQuery Ajax?
I'm trying to call a webservice using Ajax. The webservice should return a JSON file. It works, when I enter the webservice url in the browser so:
...
1
vote
3answers
21 views
how to retrieve data from wiki api usin json?
here i am fetching the data from WIKIPEDIA using following code. but it is not working for me . please help me to sort out the problem :)
var playListURL = ...
3
votes
3answers
57 views
How to Separate values from json array using jquery.?
This is my json
{
"data": [
[
"1",
"Skylar Melovia"
],
[
"4",
"Mathew Johnson"
]
]
}
this is my code jquery Code
for(i=0; i<= contacts.data.length; ...
1
vote
2answers
28 views
sending object converted to json string with post to php script
Right, so need some help with why it doesn't do what I want it to do.
I have something like this
var getUsername = $("username").val();
var getPassword = $("password").val();
var ...
0
votes
1answer
49 views
How to use JSON.parse on old devices?
Inherited a very old project that supports the old devices (currently testing on Nokia N81). The main problem is that i need to parse json and it's not supported natively, so i used this ...
2
votes
2answers
75 views
Error in JSON file
When I am using below code :
{
"info":[
{
"name": "Adam",
"address": "Park Street"
}
]
}
It is parsing perfectly
but adding on further code like:
{
...
0
votes
0answers
35 views
Not able to parse JSON file from server
I have following code :
var mydata=null;
$.ajax({
type: 'GET',
async: false,
dataType: 'json',
url: ...
0
votes
1answer
25 views
getting undefined in javascript while accessing json array
Getting problem to access json array.
this my javascript
function getCustomerInfo(){
$.ajax({
dataType: 'json',
url:'https://host:8443/xxxxxx/xxx',
type: 'POST',
data: ...
0
votes
2answers
31 views
Unexpected token A
I have this function:
function returnVehicleByValue(vehicleValue){
$.get("inc/ajax/selectMojaVozila.php",
{vehicleValue:vehicleValue},
function(html){
var vehicle = ...
0
votes
1answer
31 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
57 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
3answers
47 views
Accessing and iterating json in javascript [duplicate]
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
51 views
How to parse date time from json? [duplicate]
I have a Action Method like this
public ActionResult TodayJson()
{
DateTime today = DateTime.Today;
return Json(today,JsonRequestBehavior.AllowGet);
}
that ...
0
votes
0answers
17 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
vote
0answers
28 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 ...
0
votes
1answer
61 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
59 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
1answer
18 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
...
1
vote
1answer
40 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
42 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 ...
0
votes
4answers
54 views
Why can't I append to my JSON object? (jQuery/Javascript)
I'm using the following code in an attempt to add a new attribute to bar object:
$(document).ready(function(){
$('form').on("submit",preventDefault);
});
function preventDefault(e) {
...
0
votes
3answers
33 views
Replace part of a string (an HTML code) with /n line break for textarea
I have a form with textarea. When I add the info from the form to the DB, I replace the /n line break from that textarea with a < br> tag, like that:
...
0
votes
0answers
42 views
How to pick the nearest GPS Value in jQuery?
I'm new to java and I'm trying some stuff on jQuery mobile. I can get the current GPS location and I have array/json with a list of location information. How do you check the nearest location from the ...
0
votes
0answers
20 views
maps visualization with d3.js
I am trying to make a map of us-states like in Mike's examples
http://bl.ocks.org/mbostock/4699541
the thing is that what I want to happen on click is not only a zoom into the state but I also want ...
1
vote
2answers
64 views
ajax call with a return json never catch in success
today i'm trying to get a var from my ajax call :
$.ajax({
type: "POST",
url: "insert",
data: { title:title, start:dstart, end:dend },
contentType: "application/json",
dataType : ...
0
votes
0answers
38 views
AngularJS - json data from view to controller
I get my html template + json data from xsl translator , it is dynamic , it looks like html code plus some data in stringified json. The question is: in what way i put the json string in html code , ...
1
vote
2answers
26 views
Not getting data from JSON file
I am executing this code:
var element=null;
$.ajax({
type: 'GET',
async: false,
url: "C:\Users\myDir\Desktop\Project\jsonfile.json",
dataType: 'json',
success ...
1
vote
1answer
50 views
Node.js loops and JSON building
Respected ppl ....
This is my node.js code ...
https://gist.github.com/SkyKOG/99d47dbe5a2cec97426b
Im trying to parse the data of our exam results ...example ...
...
0
votes
0answers
34 views
How to set up jQuery pagination + Twitter Bootstrap for JSON data received by Ajax?
How to set up pagination when the data is not ready when page is loaded (because data received dynamically using ajax). There is a good answer and library to bind Twitter Bootstrap and jQuery ...
2
votes
1answer
69 views
Not able to read JSON file
I have following code for reading a JSON file.It is giving no error but i am getting null in the variable:
var myData = null;
$.ajax({
type: 'GET',
async: false,
url: 'myJson.json',
...
1
vote
1answer
19 views
Traversing a json abstract syntax tree to build boolean expression
After doing hours of research on google and stack overflow, I've come to the conclusion that the following JSON structure properly describes a boolean expression. I'm not terribly keen on algorithms, ...
1
vote
1answer
56 views
javascript variable is 'null' or 'undefined' after loading it from a local JSON file
I'm trying to create a javascript variable my_jason from the contents of a JSON file "gunsList.json" (both are stored within the same folder on my machine).
I seem to be having the same issue that ...
1
vote
1answer
28 views
Jquery: Wrap dynamically created content sourced from API
I am using the Tumblr API to create a news feed on my site. Currently, for each post the API returns:
<div class="posttitle">TITLE</div>
<div class="postbody">content</div>
...
-3
votes
4answers
54 views
How can I secure JSON? [closed]
I'm currently learning JavaSScript and jQuery, and I'm wondering how would one make it secure? For instance: preventing the user from seeing what's in the JSON or preventing the user from actually ...
0
votes
1answer
26 views
Deleting index of JSON Array in PHP, creating string version of index?
I'm trying to get a sampling of PHP to work but I'm having a bit of an issue.
Initially, if I just create JSON data and save it to a file the structure looks as follows
...
0
votes
1answer
22 views
JSON Returned From Rails Server via AJAX fails to run
I have a simple ajax post to the server..
$(".invite-team-members-submit-btn").click(function() {
$.post("invite_team_member", {
token: $("#token").val(),
email: $("#email").val(),
...
1
vote
3answers
39 views
Javascript array access outside function
I'm trying to get json data with $.getJSON and it's working fine.
This is my code:
$(document).ready(function(){
var MainArray = new Array();
$.getJSON('check-location.php?onload=true', ...
0
votes
2answers
36 views
parse serialized JSON date
I'm getting dates from a WCF service and I'm getting some inconsistency with the various dates
/Date(-62135578800000-0500)/ -- this returns 00's
vs
/Date(1369188057000-0400)/ -- this works fine
...
0
votes
2answers
50 views
Check if JSON string contains value and return associated properties
I have an array where every entry is a car name and I have a json object/string that contains those same car names followed by colour properties.
How can I check for each car in the array whether it ...


