1
vote
0answers
30 views

Best way to use Jinja2 template in Javascript?

I'm trying to AJAXify some functionality of a page that uses Jinja2 and Flask. Problem is that I want the entire Jinja2 template to be rendered by Javascript but, this isn't possible with some of the ...
1
vote
1answer
132 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. ...
1
vote
1answer
74 views

Uploading a photo using XMLHtttpRequest to a Flask webserver

I'm creating a WinJS app and using XMLHttpRequest to send a photo as a blob to a Flask webserver. openPicker.pickSingleFileAsync().then(function (file) { ...
0
votes
0answers
132 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
162 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 ...
1
vote
2answers
142 views

how to correctly pass a json object to flask server using jquery ajax

i want to pass a json object which contains nested objects from my client to my server. on the client side, my data structure looks like this: var response = {}; response['screening'] = '1'; ...
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
46 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 ...
1
vote
2answers
88 views

How can I send a GET request from my flask app to another site?

Originally, I tried to post an ajax request from my client side to a third party url, but it seems that the browser have security issues with that. I thought about sending an ajax to the server side, ...
3
votes
2answers
443 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
0answers
61 views

how to implement a js code in pjax`s container in flask

I use pjax to refresh a div, the code will be refreshed contain some js codes to implement some function, but when i use it, i found nothing but only flat code in pjax container.Why.. Any help is ...
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
0answers
150 views

html5 using pushstate with python-flask ajax keep changing page source

I'm coding a website using Python with flask mini-framework. The requirement ask me to change the URL even though i'm actually staying in the page. So I come to use pushState. The code is like this: ...
0
votes
1answer
64 views

python-ajax prevent view source response data

i'm coding python using flask framework. The data response from server keep showing up when i use "view-source" from browsers. html: $('li.channel, div.channel-in-top').on('click', function(e){ ...
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
1answer
189 views

How does ajax work with python? [closed]

I'm been googling around, but I don't quite understand how ajax works. Could please somebody explain how this works? $.ajax({ url: "{{ url_for( 'app.slideshow.<tag>' ) }}", ...
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
0answers
260 views

Flask session not persisting

I have a web application running on a Flask backend with a JS client handling the front-end work. I'm running into problems trying to save a key-value pair to Flask's session object (flask.session) ...
3
votes
2answers
1k views

ExtJS, Flask and AJAX: cross-domain request

I'm developing a RESTful application with ExtJS (client) and Flask (server): client and server are linked by a protocol. The problem comes when I try to do an AJAX request to the server, like this: ...
1
vote
1answer
127 views

How are strings passed to SQLAlchemy's .like() method

I'm building an interface on Flask using SQLAlchemy and part of it is a search API. Essentially a type-ahead input is calling the server with its value (for example an email) and then the server is ...
3
votes
2answers
1k views

Flask Python, trying to return list or dict to Ajax call

Within a Flask app, I have the following ajax call: $.ajax({ url: "{{ url_for( 'bookings.get_customer' ) }}", type: "POST", data: nameArray, ...
4
votes
1answer
702 views

AJAX for updating Flask template after data goes from link action or form to mongodb collection

I have a project wherein mongodb records are rendered in a browser via Flask. I also have some interactions in the browser that would allow users to update records in the database. So, for instance, ...
0
votes
1answer
234 views

Serving files through flask + redis

This might be a bit of a noob question, so I apologize in advance. How do I make a web server running flask+redis serve binary files as a response to a link/query? I want the response to the link to ...
2
votes
1answer
740 views

How to make Flask/ keep Ajax HTTP connection alive?

I have a jQuery Ajax call, like so: $("#tags").keyup(function(event) { $.ajax({url: "/terms", type: "POST", contentType: "application/json", data: ...
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" ...
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 %} ...
7
votes
1answer
1k views

How do I simulate an AJAX request with Flask test client?

Testing Flask applications is done with: # main.py from flask import Flask, request app = flask.Flask(__name__) @app.route('/') def index(): s = 'Hello world!', 'AJAX Request: ...
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}, ...
6
votes
2answers
3k views

Working with WTForms FieldList

I use WTForms with Flask via the Flask.WTF extension. This question isn't Flask-specific, though. WTForms includes a FieldList field for lists of fields. I'd like to use this to make a form where ...
21
votes
5answers
10k views

cherrypy vs flask/werkzeug

I want to write a Python "information server": Various types of information will be displayed: tables of data, docs, etc. Some is dynamic and some static. I'd like to use HTML templating, and am ...
0
votes
1answer
216 views

Handling and securing server functions in an ajax request..python

Hi I am trying to secure a server function being used for an Ajax request, so that the function is not accessed for any sort of malicious activity. I have done the following till now:- I am checking ...
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 ...