A brief analysis of the setting method of url in Python's web.py framework

WBOY
Release: 2016-08-04 08:55:51
Original
1323 people have browsed it

There are two ways to transmit data in web pages: GET and POST. GET transmits parameters in the form of URLs, which has a good match in web.py. If we configure the following urls

 urls =(
  '/','index',
  '/weixin/(.*?)','WeixinInterface'
  
  )
Copy after login

Ignore what comes after /weixin/, now let’s write the index class

 class index:
  def GET(self):
    i = web.input(name = 'kevinkelin',age = 100)     
    return render.index(i.name,i.age)
Copy after login

Write an index.html template file at will

 $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!
Copy after login

When accessing http://127.0.0.1:8080/, the name and age values ​​are not passed at this time. Since my GET function defines the default name and age values, the program will pass kevinkelin and 26 to the template. to get the following output

I just want to say hello to kevinkelin, he is 100 years old
Copy after login

When accessing http://127.0.0.1:8080/?name=yyx&age=26, that is, passing name = yyx and age = 26 to the GET function, you will get the following output

I just want to say hello to yyx, he is 26 years old
Copy after login
Copy after login

We can also not define the default parameters, that is, define them as empty

i = web.input(name = None,age = None)
Copy after login

When accessing http://127.0.0.1:8080/, you will get the output of hello, world!, which is the else in the template
But if you don’t define name and age it will go wrong

i = web.input()
Copy after login

This is because you assign i.name and i.age to the template later, but these two variables are not in the global variables, so an error will be reported
But sometimes we want to pass parameters like this without adding that "?" Then we have to change the urls rules

 urls =(
  '/name=(.*)&age=(.*)','index',
  '/weixin/(.*&#63;)','WeixinInterface'  
  )
Copy after login

Rewrite class index

 class index:
  def GET(self,name,age):
    return render.index(name,age)
Copy after login

Here is to match the parameters of the url through regular matching and then pass them to the parameters of GET in the index class
When accessing http://127.0.0.1:8080/name=yyx&age=26 you will get

I just want to say hello to yyx, he is 26 years old
Copy after login
Copy after login

The second method seems simple, but it is actually difficult to control and requires an increased workload of writing regular expressions
If I want to know how many parameters are passed through GET, I can directly return to see which ones are passed
Next, let’s take a look at the data from the post:
We can make a simple form or directly use fiddler to construct data and POST the value

def POST(self):
    data = web.data()    
    return data
Copy after login

2016711194530065.png (698×539)

I want to see the data type obtained

return type(data)
Copy after login

What you get is , which means web.py has converted the post data into str type
Then let me try passing xml

 <xml>
<ToUserName>yanxingyang</ToUserName>
<FromUserName>study_python</FromUserName>
<CreateTime>123456</CreateTime>
<MsgType>text</MsgType>
<Content>Just a test</Content>
</xml>
Copy after login

Actually, some changes have been made to the XML format of WeChat. Let me try to use lxml to parse it

from lxml import etree
data = web.data()
xml = etree.fromstring(data)
content = xml.find(‘Content').text
return content
Copy after login

The results obtained are great

2016711194622132.png (244×124)

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!