Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62dd3db commit 168d3a9Copy full SHA for 168d3a9
src/bevyframe/__init__.py
@@ -78,7 +78,7 @@ def __init__(self, data: dict[str], app) -> None:
78
self.method = data['method']
79
self.path = data['path']
80
self.headers = data['headers']
81
- self.body = urllib.parse.unquote(data['body'])
+ self.body = urllib.parse.unquote(data['body'].replace('+', ' '))
82
self.form = {}
83
for b in self.body.split('\r\n'):
84
for i in b.split('&'):
0 commit comments