Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 318 Bytes

postbasic.zh-cn.md

File metadata and controls

17 lines (11 loc) · 318 Bytes
layout title
default
从post读取原始数据

从post读取原始数据

介绍

有时候,浏览器会通过post发送很多数据。在webpy,你可以这样操作。

代码

class RequestHandler():
    def POST():
        data = web.data() # 通过这个方法可以取到数据