0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PythonとBottleを使用してフォームの値を取得すると文字化けが発生する件の対処法

Posted at

HTMLで書いたformの値を、PythonのBottleフレームワークを使用して取得した時、
文字化けが発生した。対処法についてメモ。

コードについて

HTMLとPythonは以下の通り

<form action="/add" method="POST">
	<input type="text" name="content">
	<input type="submit" value="送信する">
</form>
@route('/add', method="POST")
def add():
	content = request.forms.getunicode('content')  # ここに注目
	store(content)
	return redirect('/')

文字化けを直す方法

フォームの値を取得する時、getall関数を使用すると文字化けが発生した。
getunicode関数に変更すると、文字コードをutf-8に変換して取得できる。

参考サイト

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?