添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
坏坏的红金鱼  ·  <kuid2:1942:6:1> Fire ...·  3 周前    · 
玩足球的烤土司  ·  Pod 停滞在 ...·  2 月前    · 
高大的电影票  ·  Hive ...·  8 月前    · 
序语程言

1
  urls =(
    '/','index',
    '/weixin/(.*?)','WeixinInterface'

1
class index:
    def GET(self):
        i = web.input(name = 'kevinkelin',age = 100)

1
$def with(name,age)
$if name:
I just want to say <em>hello</em> to $name, he is $age years old
$else:
<em>hello</em>,world!

1
urls =(
    '/name=(.*)&age=(.*)','index',
    '/weixin/(.*?)','WeixinInterface'

1
class index:
    def GET(self,name,age):

1
def POST(self):
        data = web.data()

1
<ToUserName>yanxingyang</ToUserName>
<FromUserName>study_python</FromUserName>
<CreateTime>123456</CreateTime>
<MsgType>text</MsgType>
<Content>Just a test</Content>