原文http://webpy.org/formimport webfrom web import formrender = web.template.render('templates/')urls = ('/', 'index')app = web.application(urls, global...
分类:
Web程序 时间:
2015-06-25 19:28:43
阅读次数:
194
1:安装web.py参考:http://webpy.org/install.zh-cn下载web.py#wgethttp://webpy.org/static/web.py-0.33.tar.gz安装web.py#tarzxvfweb.py-0.33.tar.gz#cdweb.py-0.33使所有的web程序可以访问#pythonsetup.pyinstallOK,安装完毕,关于web.py请参考http://webpy.org/install.z..
分类:
Web程序 时间:
2015-06-10 15:56:24
阅读次数:
156
在网站开发中,会有一些页面跳转功能需求,比如登录后跳转到用户的个人页面,比如退出登录后跳转到登录页面。在web.py中,使用web.seeother或者web.redriect就可以实现这个功能。比如importweb
urls=(
‘/hello‘,‘Index‘,
‘/welcome‘,‘Welcome‘
)
app=web.application(urls,gl..
分类:
Web程序 时间:
2015-02-06 15:06:11
阅读次数:
164
效果main.py# -*- coding: utf-8 -*-import webimport searchurls = ( '/', 'Search',)render = web.template.render('templates')class Search(): def GET(...
分类:
Web程序 时间:
2015-01-26 20:58:57
阅读次数:
243
webpy框架拥有自己的模版语言TempletorTempletor具有Python的语言风格可以直接嵌入Python代码$code: videoIn = post.filename and post.filename.split('.')[-1] in ['MP4'] imageIn = po.....
分类:
编程语言 时间:
2015-01-21 22:00:55
阅读次数:
231
1.在项目的根目录创建static文件夹能够直接在网页中访问static文件夹中的文件如果static文件夹有一个文件为favicon.ico,那么访问的地址为127.0.0.1:8080/static/favicon.ico2.webpy中只提供static一个静态文件夹,如果我还需要一个存储上传...
分类:
Web程序 时间:
2015-01-20 21:58:43
阅读次数:
3942
服务器在运行过程中,没办法获得变量的值,就难以发现问题出在什么地方而进行调试shell里只能看见服务器正常或异常的响应,以及出错程序的位置,但出错时你在网页里会看到这个这是因为默认开启了调试模式,将程序部署到服务器时,则需要设置为Falseweb.config.debug = True最上方是直接引...
分类:
Web程序 时间:
2015-01-20 20:25:43
阅读次数:
175
1. 搭建Apache 服务器 (1). 下载 Httpd 及依赖 -- apr、apr-util httpd :http://httpd.apache.org/ apr & apr-util :https://apr.apache.org/ (2). 编译 apr :$ ./...
分类:
编程语言 时间:
2015-01-15 12:48:43
阅读次数:
199
dbpydbpy是一个python写的数据库CURD人性化api库。借鉴了webpy db和drupal database的设计。 如果喜欢 tornado db 或者 webpy db这类轻巧的db库,或者想发挥原生SQL优势,那么值得一试。Featues灵活简单天马行空的SQL构建语法糖线程安全...
分类:
数据库 时间:
2015-01-10 23:35:24
阅读次数:
445
1,解决官方sae样例代码中的误区
#app = web.application(urls, globals()).wsgifunc()
app = web.application(urls, globals())
#application = sae.create_wsgi_app(app)
application = sae.create_wsgi_app(app.wsgifunc())...
分类:
Web程序 时间:
2015-01-02 18:49:18
阅读次数:
173