从post读取原始数据介绍代码从post读取原始数据介绍有时候,浏览器会通过post发送很多数据。在webpy,你可以这样操作。 代码class RequestHandler(object): def POST(self): data = web.data() # 通过这个方法可以取到数据