Tagged Questions
1
vote
1answer
38 views
Fetching data from the server to Backbone giving me a weird json
I'm trying to fetching data from the server with backbone, this is my request:
I initialize the view with this:
// Backbone view initialize
this.collection = new Dropdown.Collections.Brands();
...
2
votes
2answers
24 views
JSON value encoded twice : how to use fetch_assoc()?
The following code returns the value twice, once encoded in JSON :
<?php
$req = $bdd->prepare('SELECT Date, Open, Close FROM quotes WHERE Symbol = ? AND Date > ? AND Date < ?');
...
0
votes
1answer
45 views
Where should I flatten array of items for collection in Backbone?
On stories.json I have:
[
{
id: '1',
project_id: '2',
current_state: 'finished',
description: 'Description 1'
},
{
id: '2',
project_id: '2',
...
0
votes
0answers
176 views
JSON Call to MySQL Improperly Handling Variable
I'm trying to set-up open-source software called pushpool which is essentially a JSON rpc server and for some reason I keep receiving "mysql pwdb query failed at fetch" when attempting worker ...
0
votes
1answer
50 views
backbone server returning html
I've set up simple back bone code were I'm fetching from a directory which contains images -
url: 'uploads/'
the fetch is succesful, but my results basically contains an html list of the images in ...
0
votes
1answer
300 views
backbone fetch specific object from json file, not rendering
Okay, im going slightly insane trying to display data from a json file in 2 seperate views/collections.
I will paste my entire code here and try to explain where i am now, and what i need done.
Its ...
0
votes
1answer
105 views
Backbone How can i load only part of a json file into a collection
Hi i have a json file that looks like this:
{
"links_1": [
{
"navn": "somename",
"link": "http://www.domane.com"
},
{
"navn": "somename",
"link": ...
1
vote
1answer
67 views
Is there an alternative for using JSON + NSTimer for fetching datafrom server?
Im using NSTimer for constant data fetching from my server using JSON.
Using this technique has a lot of disadvantages, such as unwanted data fetching, and battery life drain.
An example of this ...
0
votes
1answer
81 views
Fetching JSON in javascript using anyorigin
I'm trying to fetch data but the following script doesn't work. Could you please help me figure it out?
function initialize() {
...
0
votes
1answer
170 views
Backbone fetch response failure on IE8
I have a backbone project that is calling a service on Google App Engine that returns JSON data. backbone collection "parse" is not being called nor am I getting an error in backbone... This issue ...
1
vote
1answer
501 views
Getting static data from a json file into backbone model
I have the following code and was wondering why my data isn't getting pulled into my model? I'm using a static json file and I'm guessing this might be my problem but can't seem to find any ...
0
votes
0answers
64 views
Fetching Data with datawithcontentsulr always null ios
This must be simple but i can't get it done,
the one that can be fetched small json data
NSURL *request = [NSURL URLWithString:[NSString ...
0
votes
1answer
865 views
Backbone.js use fetch() on collection returns no model, 200 OK and an empty response
I am building a comment object using Backbone.js.
The URL in the collection returns json that looks like this:
{'type': 'comment',
'data': [{"body": "commment number 1!",
...
0
votes
1answer
86 views
Take object out of JSON Array
I'm trying to select a specific object in a JSON query. I have decoded it, and although I have spent a few hours searching for an answer, I am unable to determine one for this specific case. I would ...
3
votes
1answer
139 views
JSON data not in proper format : fetching from mysql
<?php
require 'dbinfo.php';
try {
$db = new PDO($dsn, $username, $password);
$db->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
$sth = ...
2
votes
4answers
287 views
How to get the content of an external page as a javascript object?
So I know there are many ways to get the content of an external page as a string (for example with PHP) but is there a way to get it as a javascript/JSON object (a DOM Window object for example) so I ...
0
votes
2answers
154 views
Reading JSON from server JavaScript
I am trying to read a JSON file hosted on a server.
The link is http://coastwatch.pfeg.noaa.gov/erddap/info/index.json
When you go to that link, it will download info.json. I need to fetch this json ...
0
votes
2answers
80 views
Json Encoding Issue in PHP 5
I'm trying to use Json with my database using php5 but suffering from a weird result.
This database has four fields - 'id', 'Title', 'Thread', 'date' but the jason result looks like the following.
[
...
-1
votes
3answers
363 views
how to use AJAX to fetch content
I need to do a fetch using ajax. I need to use this: ajax/get_item_list/*group_id*/offset/*limit*/true (return true as JSON) where id comes from a link that user clicks. And when user clicks that ...
1
vote
2answers
242 views
Only download specific MIMETYPE with JavaMail
Each message that I am downloading is quite large. However, I am only interested in the JSON MIMETYPE. Is there a way to specify to the server that I am would only like to download the JSON part of ...

