开发者

Dynamically Refreshed Pages produced by Python

I've been researching this on and off for a number of months now, but I am incapable of finding clear direction.

My goal is to have a page which has a form on it and a graph on it. The form can be filled out and then sent to the CGI Python script (yeah, I'll move to WSGI or fast_cgi later, I'm starting simple!) I'd like the form to be able to send multiple times, so the user can update the graph, but I don't want the page to reload every time it doe that. I have a form and a graph now, but they're on separate pages and work as a conventional script.

I'd like to avoid ALL frameworks except JQuery (as 开发者_开发百科I love it, don't like dealing with the quirks of different browsers, etc).

A nudge in the right direction(s) is all I'm asking for here, or be as specific as you care to.

(I've found similar guides to doing this in PHP, I believe, but for some reason, they didn't serve my purpose.)

EDIT: The graph is generated using Flot (a JQuery plugin) using points generated from the form input and processed in the Python script. The Python script prints the Javascript which produces the graph in the end. It could all be done in Javascript, but I want the heavier stuff to be handled server-side, hence the Python.

Thanks!


I'm assuming that you have two pages at the moment - a page which shows the form, and a page which receives the POST request and displays the graph.

Will a little jQuery you can do exactly what you want.

First add to your form page an empty div with id="results". Next in your graph plotting page put the output you want to show to the user in a div with the same id.

Now attach an onclick handler to the submit button (or to the individual parts of the form if you want it to be more dynamic). This should serialize the form, submit it to the plotting page snatch the contents of the id="results" div and stuff them into the id="results" div on the the form page.

This will appear to the user as the graph appearing on the page whenever they click submit.

Here is a sketch of the jQuery code you will need

$(function(){
    // Submit form
    // Get the returned html, and get the contents of #results and
    // put it into this page into #results
    var submit = function() {
        $.ajax({
            type: "POST",
            data: $("form").serialize(),
            success: function(data, textStatus) {
                $("#results").replaceWith($("#results", $(data)));
            }
        });
    };
    $("form input[type=submit]").click(submit);
    // I think you'll need this as well to make sure the form doesn't submit via the browser
    $("form").submit(function () { return false; });
});

Edit

Just to clarify on the above, if you want the form to redraw the graph whenever the user clicks any of the controls not just when the user clicks submit, add a few more things like this

$("form input[type=text]").keypress(submit);
$("form input[type=checkbox], form select").change(submit)


If you'll be loading HTML and Javascript that needs to be executed, and your only reason for not wanting to load a new page is to preserve the surrounding elements, you could probably just stick the form in an IFRAME. When the form is POSTed, only the contents of the IFRAME are replaced with the new contents. No AJAX required either. You might find that the answers here give you sufficient direction, or Google for things like "form post to iframe".


I'd like the form to be able to send multiple times, so the user can update the graph, but I don't want the page to reload every time it doe that.

The general pattern goes like that:

  1. Generate an XMLHttpRequest (in form's onsubmit or it's 'submit' button onclick handler) that goes to your Python script. Optionally disable the submit button.
  2. Server side - generate the graph (assuming raw HTML+JS, as hinted by your comment to another answer)
  3. Client side, XmlHttp response handler. Replace the necessary part of your page with the HTML obtained via the response. Get responseText from the request (it contains whatever your Python script produced) and set innerHtml of a control that displays your graph.

The key points are:

  • using XMLHttpRequest (so that the browser doesn't automatically replace your page with the response).
  • manipulating the page yourself in the response handler. innerHtml is just one of the options here.

Edit: Here is a simple example of creating and using an XMLHttpRequest. JQuery makes it much simpler, the value of this example is getting to know how it works 'under the hood'.


Update img.src attribute in onsubmit() handler.

  • img.src url points to your Python script that should generate an image in response.
  • onsubmit() for your form could be registered and written using JQuery.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜