Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 393 Bytes

postbasic.md

File metadata and controls

19 lines (12 loc) · 393 Bytes
layout title
default
Reading raw data from post

Reading raw data from post

Other languages: français | ...

Introduction

Sometimes, the client sends a lot of data by the POST method. In webpy, you can handle it like this.

Code

class RequestHandler():
    def POST():
        data = web.data() # you can get data use this method