阅读更多

9顶
0踩

编程语言

原创新闻 Python AJAX Server

2008-03-10 19:02 by 见习编辑 jejwe 评论(3) 有11982人浏览

  前面有人发布过关于Aptana出的jaxer的信息。jaxer号称世界第一个真正的ajax服务器.现在又有人开发了一个Pyxer,是一个基于python的ajax服务器

  主页: http://www.pyxer.net/

  讨论: http://groups.google.de/group/pyxer

  下载:  http://pypi.python.org/pypi/Pyxer

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Proxy Demo</title>
</head>
<body>

    <form action="" onSubmit="save_data(document.getElementById('num').value); return false;">
        Value between 5 an 50
        <input type="text" value="" id="num" onChange="validate(this.value)">
    </form>

    <script language="Python" type="text/python" runat="both">
    def validate(value):
        value = int(value)
        if not (5 <= value <= 50):
            alert("Number not in range!")
            return False
        return True
    </script>

    <script language="Python" type="text/python" runat="server-proxy">
    def save_data(value):
            file("counter.txt", "w").write(value)

    def load_data():
            return file("counter.txt", "r").read()
    </script>

    <script language="Python" type="text/python" runat="client">
    def onload():
            document.getElementById('num').value = load_data()

    window.onload = onload
    </script>

</body>
</html>

 

9
0
评论 共 3 条 请登录后发表评论
3 楼 galaxystar 2008-03-11 20:06
python的效率,还是让人比较满意的!
2 楼 笨笨狗 2008-03-11 12:10
汗啊,一个jaxer冒出来,然后就有了pyxer,过几天估计ruby版的也会出来吧,呵呵

不过jaxer的服务器端ajax挺有意思,用来做信息整合不错
1 楼 fengzl 2008-03-11 08:23
怎么感觉像asp

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • python HTTPServer 实现文件上传下载

    最近用ipad和windows互传文件时没有发现简单的工具,就用python的HTTPServer写个简单的网页应用用于互传文件吧。

  • 【Python Web】Ajax 使用详解

    ajax的介绍2. ajax的使用3. 小结 ajax 1. ajax的介绍 ajax 是 Asynchronous JavaScript and XML的简写,ajax一个前后台配合的技术,它可以 让 javascript 发送异步的 http 请求,与后台通信进行数据的获取,ajax ...

  • python获取ajax的post,使用Python请求模拟ajax POST调用

    22 Apr 2014 16:30:05 GMT Cache-Control: no-cache Pragma: no-cache Content-Encoding: gzip So it calls ajaxdata.php with specific params and in response i should find the filename. However this Python ...

  • python 股票 ajax,Python之AJAX

    AJAX$("#i4").on("click", function () {var i1 = $("#i1").val();var i2 = $("#i2").val();$.ajax({url: "/app01/ajax_add/",type: "GET",data: {"i1": i1, "i2": i2},success: function (arg) {alert(arg);}})})sd...

  • python ajax客户端,使用ajax运行python脚本

    如果您已经有一个现有网站不能直接从web页面执行服务器端python脚本(也不能执行客户端python脚本)。您必须让服务器拦截请求,然后让它执行... [ web server ][ client browser ] [ web server ] ----&gt; [ python ...

  • python--快速启动Server

    使用技术:python + falsk from flask import Flask, render_template, request, jsonify from flask_cors import CORS app = Flask(__name__) app.config['JSON_AS_ASCII'] = False CORS(app, supports_...

  • django项目——python Django接收ajax post请求报错 500(Internal Server Error)

    页面提示500服务器错误 在终端显示错误为: 查找 APPEND_SLASH的作用 Django APPEND_SLASH 参数自动给网址结尾加’/’ - 刘荣星的博客 可知应该是url配置的问题 查看urls.py 以及detail.html中的ajax部分的代码 ...

  • python http.server 的测试和常见问题解决方法

    先分别写一个简单httpserver 和一个html文件。html文件只是引入了 jquery, 后面测试用python 是开启了最简单的一个 http服务python 脚本运行,会开启 127.0.0.1:8000 的http服务。浏览器访问 ...

  • python发起ajax请求,使用Python请求库发送jquery AJAX GET请求

    I have a website I need to scrape and it is using jquery AJAX function to get information from the server. I have been investigating the code for a while and I successfully get the response from serve...

  • 使用ajax请求cgi,Python CGI同步AJAX请求

    因此,经过进一步的研究,这里是我的代码,其中有效:from http.server import BaseHTTPRequestHandler, HTTPServer, CGIHTTPRequestHandlerfrom socketserver import ThreadingMixInimport threadingimport cgitb;...

  • 【使用python的flask和与前端ajax交互】实现一个简单的登录程序

    flask ajax

  • ajax传值给python_ajax向python脚本传递参数

    我有一个python CGI脚本,我使用以下命令创建并运行:python3 -m http.server --cgi 8000python脚本的重要部分是:^{pr2}$现在我想做的是在我的html/javascript中,我想把从表单中获得的值传递到cgi脚本。...

  • python flask ajax_Python Flask前后端Ajax交互的方法示例

    之前总结过flask里的基础知识,现在来总结下flask里的前后端数据交互的知识,这里用的是Ajax一、 post方法1、post方法的位置:在前端HTML里,绑定在一个按钮的点击函数里,或者一个鼠标输入框点击离开事件。...

  • python中selenium中使用ajax_python+pyquery+selenium 爬取ajax界面内容和加载问题

    python爬虫遇到有翻页和ajax页面时用selenium操作更方便点,也有pyquery库解析页面资源,可以达到持续爬取界面的数据;一 selenium操作浏览器from selenium importwebdriverfrom selenium.webdriver.common.by ...

  • python实例3.0——动态页面:Ajax数据爬取

     Client/server/Database  脚本语言:jsp、asp、php等。 客户端生成  轻量级、局部的,例如给用户提示警告信息、显示定时时间等。  脚本语言: javascript、VBScript、ActionScript等  插件:Active X插件...

  • Python3实现简单的http server

    前端的开发的html给我们的时候,由于内部有一些ajax请求的.json的数据,需要在一个web server中查看,每次放到http服务器太麻烦。还是直接用python造一个最方便。 最简单的,直接用python3 -m http.server 但是我在...

  • python中怎么获取js的输出值,通过Javascript Ajax从Python获取返回值

    I'm trying to write a Javascript program which can get the return value of my Python program, I'm using Ajax. The connect between Js and Python succeeded, but when I use alert() function in Javascript...

  • Python Tornado实现AJAX的get请求处理

    server.py import os import sys import tornado . web import tornado . locks import tornado . ioloop from tornado . options import define , options define ( "port" , default = 8888 , ...

  • python web bottle ajax请求 和 websocket

    1、bottle最新的版本支持 ajax 请求处理 2、websocket 复用 web 服务端口 操作步骤: 1、将下边 test.py test.html 两个文件放在一个目录下。 2、运行python test.py 3、浏览器打开地址 http://localhost:8080 4、...

  • Spring Cloud 全面学习案例集,含多种功能示例与教程.zip

    1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。

Global site tag (gtag.js) - Google Analytics