0
votes
1answer
29 views

Problems in trying to POST json data to python flask server

I am trying to Post a json to my flask server, but the post request always fails. This is how I am doing it, any idea what is am doing wrong? jQuery.ajax({ url:'/someLink', method:'POST', ...
1
vote
1answer
129 views

Jquery ajax json get call delivered by Flask web framework - call fails

I am trying to have a simple jquery ajax call fetching json data. However, the call fails and I cannot understand very well why. The code is below. To me it seems all right. ...
0
votes
1answer
154 views

js: attempting to hook fine-uploader into a flask application

Am attempting to hook fine uploader into a Flask endpoint. Endpoint looks like: @app.route('/', methods=['GET', 'POST']) def a_function(): if request.method == 'POST': file = ...
0
votes
0answers
129 views

Grab checked input and send it in json format using AJAX jQuery and a POST request. Using Flask

Hi So I am having issues trying to send the checked data of a form using a button I configured for submission. The checked data is coming in using a 'GET' request and that works phenomenally using ...
0
votes
0answers
161 views

Sending checklist form values using jQuery, Flask, Python, and HTML

I am doing a web app. This web app will provide python information that will be parsed and used to communicate with a database and part of the information will be used to control a bluetooth module ...
0
votes
1answer
139 views

Ajax call return list from python flask approute

I am using ajax call to post some data and now i need to return a python list from approute back to html. how i can do this. here is my code $('#stop').submit(function(){ id = ...
0
votes
0answers
45 views

Send data from multiselect field to flask python

I am using html+ajax+python Flask framework. Now I need to post some data to server. Here is my code: $('#stopcontainer').submit(function(){ id = id var selectednumbers = $('#service').val() ...
3
votes
1answer
85 views

On jQuery.post, I get the message: The method GET is not allowed for the requested URL

I have the following problem: I work on a Flask application, and I want to pass some data to the server via AJAX. I am pretty new on this AJAX thing, so I can't get something right. On my client ...
0
votes
1answer
100 views

Example of Asynchronous page processing in Flask

I am dealing with an application which is using a lot of graphics (the library Raphael and graphdracula). Basically, the application is drawing different graphs. Let's say that we have 3 pages which ...
0
votes
4answers
68 views

object20Object Validation plugin Flask

I'm trying to use the Validation jQuery plugin with the flask framework. This is my code: email: { required: true, email: true, remote: { url: $.getJSON($SCRIPT_ROOT + ...
0
votes
1answer
66 views

jQuery Validation Remote option Flask

I'm trying to check in a form if the email address of the new user enters already exists. This is my HTML: $("#createform").validate({ errorClass: "errormessage", validClass: ...
1
vote
1answer
295 views

Flask AJAX Autocomplete

I'm trying to make the jQuery UI autocomplete widget work with the Flask framework. http://flask.pocoo.org/docs/patterns/jquery/ http://jqueryui.com/autocomplete/#remote This is my HTML: ...
0
votes
2answers
104 views

GET uri query with a json for Flask-Restless

In the Flask-Restless documentation, ("Making search queries") we can find that quering the framework in a special uri format que can query the database. Flask-Restless ...
0
votes
1answer
112 views

datatable server sideprocessing

I have a datatatble and one coloumn is editable. I am looking for solution of 3 problems. can anyone help on this. I need to pass the the first coulumn to my serverside script ( that is the primary ...
3
votes
2answers
441 views

how can I use data posted from ajax in flask?

I'm having trouble getting data POSTed from jquery ajax. $('#clickme').click( function() { var data = save_input(); // data data['_sid'] = $survey_id; // survey_id injected from flask ...
1
vote
0answers
90 views

Extracting associative array [closed]

I have a form that is submitted with a trigger of submit button. Here's an example of the newArr's content: [{"idprod":"1","qty":"1"},{"idprod":"4","qty":"1"},{"idprod":"3","qty":"1"}] The thing ...
0
votes
4answers
122 views

Why is the jquery $.post command not sending JSON data to the server

I've been using the $.getJSON command for awhile. But since I'm actually posting to the server I need to be using $.post. But as soon as I switch from $.getJSON to $.post, the back end, which is the ...
0
votes
0answers
99 views

How should I update a div whenever new data is POSTed to my Flask SQLAlchemy application?

I am making a chat application in Flask for practice, and I need the HTML div on the chat page to automatically retrieve new chat messages without simply refreshing the whole page. From what I have ...
0
votes
1answer
131 views

Add images to image slider while running, with jQuery and Flask

I need my jQuery image slider (I don't have one yet) to update after a few seconds to see if there are new images. It has to do this without refreshing the page (asynchronously) To do this, there ...
0
votes
1answer
445 views

JSON “POST” to Flask View doesn't work

I want to send some JSON via POST to my Flask View. here is my code js: $.post('/blog/add/ajax', { "title": "hallo", "article": "test" }, function(data) { console.log(data.title); ...
0
votes
1answer
190 views

jQuery AJAX plugins with Flask

A lot of jQuery plugins have AJAX support, for example the autocomplete jQuery UI plugin or the form validation plugin. Most of the documentation about the AJAX support of the plugin is shown using ...
2
votes
2answers
364 views

What format is a jQuery ajax post request sending the data in and how can it be accessed through Flask's request object?

I am creating a web page that sends an XHR AJAX request using jQuery's $.post() object. The post is being received by a Flask app that is on another domain. The Javascript is below: ...
0
votes
0answers
95 views

How can search results be live and updated using Javascript accessing a Python application?

I currently have a simple python application built on Flask and SQLAlchemy. The application is accesses a database User imported from another python file. The application has two views, one is home ...
0
votes
1answer
167 views

jeditable loadurl: referencing css id or just passing in variables as needed

I have this on my page: $('.editable-question').editable('{{my_identifier}}/form_item/edit',{ //loadurl: 'example/restful/url/in/app/{{???????????????}}', type ...
0
votes
2answers
363 views

Have data automatically pushed to website? (Python/Flask + WSIG + jquery AJAX)

Can I have a value automatically pushed onto a website (using AJAX = JQuery?), when something is done on the server side and python is ready to send it, rather than just in a response to a request by ...
0
votes
3answers
112 views

How is a text file sent to a browser line by line

I have a text file and want to send it line by line to a web browser. So as each line is read it is output in the browser. I presume JQuery would be the route to take, but I've never used it as the ...
0
votes
1answer
334 views

JQuery/ Flask - send data from server to browser as JSON

Firstly excuse my ignorance, I'm very new to all this. My problem is that I'm trying to send json data stored in a mongodb of coordinates to a client browser. I have a python module which uses ...
2
votes
1answer
86 views

Async javascript calls against Flask services run sequentially

As a test I created a html page that issues the following $.get requests to my Flask server: http://myflaskapp/api/test1.json http://myflaskapp/api/test2.json Both services sleep for 30 seconds. ...
0
votes
0answers
112 views

Autocomplete with datalist hooked to Flask app

What is the best way to implement autocomplete to work with the new datalist element of HTML5 and a Flask backend? Using Jinja templating I have something like: <form action="add" method="post" ...
0
votes
1answer
172 views

JS Framework to deal with asynchronous flow, callbacks and closure?

I dislike JavaScript. Greatly. I think it's a messy language, though I'll be the first to admit this may be because I don't know how to code in it as well as other languages. I wasted the last three ...
3
votes
2answers
304 views

Move options between two multi-select fields

I'm trying to do something like this answer: http://stackoverflow.com/a/6256910/1641189 However I want to do it with multi-select fields since they provide scroll bars. Instead of having each item ...
3
votes
1answer
1k views

Flask not getting any data from jQuery request data

I've a handler for a URL, @app.route("/", methods=['POST']) @crossdomain(origin='*') def hello(): ss=str(request.data) print ss return ss The handler cannot retrive the data part of the ...
1
vote
2answers
177 views

Set iframe src response from Flask

Currently, I got a question about Flask application. I am developing a web app that need to generate reports (some auto-generated html files like junit report). On the report_dispay page, I have a ...
4
votes
1answer
252 views

How to get a build a form with repeated elements well

The title really doesn't say it, as i'm having trouble summarizing the issue. So here goes the long explanation: Let's say I'm adding multiple contacts' information, and I have these fields: Name ...
2
votes
1answer
318 views

Jquery posts not working with flask-restless, where curl -H posts are

I have a flask application installed, running the flask-restless API the following command executes successfully: curl -H "Content-type: application/json" -X POST http://127.0.0.15000/api/menu -d ...
4
votes
1answer
2k views

How to setup for jQuery-File-Upload? How to implement the upload handler?

I am new on Javascript. However I want to implement the jquery plugin for File uploading. Here is the setup guide I found but I have no basic knowledge on how to setup this. I am using python ...
1
vote
1answer
270 views

Accessing cookies in tornado over ajax calls in flask

As on overview I have a Flask app which serves as the main website and a Tornado app that serves as the chat server for the website, each running independent on a separate port. The chat app directly ...
1
vote
4answers
213 views

How to make javascript work to response to buttons added later in AJAX way

i have a form to submit message. I'd like to submit in an AJAX way. the following code works, but the newly add 'reply' button doesn't work: {% block body %} <script type="text/javascript" ...
1
vote
3answers
145 views

what's a good way to differentiate 'reply' buttons for each message?

I'm modifying Flask MiniTwit example to implement twitter-like message reply system, each message has a 'reply' button. I'd like to expand a new div to display replies as well as an input area When a ...
0
votes
1answer
174 views

try to implement twitter-like message reply in Flask MiniTwit example

I trid to implement twitter-like message reply in Flask MiniTwit example, but now I can't make the 'reply' button for each message work, how? <ul class=messages> {% for message in messages %} ...
2
votes
3answers
549 views

How do I call a JS callback when a file upload completes?

I'm creating frontend upload for an app with appengine backend. What I want to make is a file upload solution, and I dont want to be using plupload or those kinds of ready-made solutions. I ...
1
vote
2answers
344 views

JQuery Callback Never Called

I have the following JS/JQuery snippet: function add_item() { var item = $("input:text[name='new_item']").val(); $.post("{{ url_for('add_item') }}", {'item' : item}, ...
2
votes
1answer
438 views

jquery .get not doing an xhr request!

I have just entered the world of jquery and pretty new to javascript too.I have a small javascript snippet like below:- <script type="text/javascript"> $(function(){ ...
1
vote
3answers
505 views

Not getting values from Select Fields with jQuery

I'm trying to implement some basic ajax functionality in website I'm creating. I'm using the Flask microframework and jQuery to do this. I have a lot of experience with python, what Flask is written ...