Gas StationThere areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it...
分类:
其他好文 时间:
2014-11-23 23:04:52
阅读次数:
268
基本映射 映射使用在根据不同URLs请求来产生相对应的返回内容.Bottle使用route()?修饰器来实现映射. 1
2
3
4
5 from?bottle?import?route,?run@route(‘/hello‘)def?hello():
????return?"Hello?World...
分类:
编程语言 时间:
2014-11-23 19:04:58
阅读次数:
211
转自此大神http://www.cnblogs.com/gunl/archive/2010/09/14/1826234.html留在好查阅linux 路由表维护查看 Linux 内核路由表使用下面的 route 命令可以查看 Linux 内核路由表。# routeDestination Ga...
分类:
系统相关 时间:
2014-11-22 01:59:40
阅读次数:
365
set clock timezone 0set vrouter trust-vr sharableset vrouter "untrust-vr"exitset vrouter "trust-vr"unset auto-route-exportexitset service "RDP-8888" p...
分类:
其他好文 时间:
2014-11-21 01:16:46
阅读次数:
376
from flask import Flask, abort, redirect, url_forapp = Flask(__name__)@app.route('/')def index(): return redirect(url_for('login'))@app.route('/log...
分类:
其他好文 时间:
2014-11-20 21:35:06
阅读次数:
165
from flask import Flask, requestfrom flask import render_templateapp = Flask(__name__)app.debug=True@app.route('/hello/')@app.route('/hello/')def hell...
分类:
其他好文 时间:
2014-11-20 21:34:55
阅读次数:
296
from flask import Flask, session, redirect, url_for, escape, requestapp = Flask(__name__)@app.route('/')def index(): #判断username是否存在session中 if ...
分类:
其他好文 时间:
2014-11-20 21:34:53
阅读次数:
245
# -*- coding:utf-8 -*-from flask import Flask#创建一个flask应用对象app = Flask(__name__)#使用 route()装饰器告诉flask哪个url触发哪个函数@app.route('/')def hello_world(): r...
分类:
其他好文 时间:
2014-11-20 20:20:02
阅读次数:
208
# -*- coding:utf-8 -*-from flask import Flask#创建一个flask应用对象app = Flask(__name__)#设置调试为trueapp.debug = True#使用 route()装饰器告诉flask哪个url触发哪个函数@app.route('...
分类:
其他好文 时间:
2014-11-20 20:18:19
阅读次数:
185
# -*- coding:utf-8 -*-from flask import Flask#创建一个flask应用对象app = Flask(__name__)app.debug = True#使用 route()装饰器告诉flask哪个url触发哪个函数@app.route('/')def hel...
分类:
其他好文 时间:
2014-11-20 20:13:18
阅读次数:
223