1
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 5 years have passed since last update.

Bottle チュートリアル:TODOリストアプリケーション不具合

Posted at

PythonのWebアプリフレームワークBottleの、公式ドキュメントのチュートリアルでリストの本文に日本語を入力したら文字化け、解決したのでメモ。

##TODO項目の日本語文字化け
TODO項目の本文を日本語で入力すると文字化け発生しました。
todo.pyの**new_itme():edit_item():**のコード次のように修正し解決!

24行目(修正後)

todo.py 
new = request.query.task.strip()

45行目(修正後)

todo.py
edit = request.query.task.strip()

##その他の不具合
他にも不具合がありましたが以下のサイトを参考に解決できました。

  • 日本語の文字化け以前にサンプルコードを書いて実行したら動きませんでした。

BottleのTODOチュートリアルが動かない件と対処方法

  • TODO項目か2桁以上になるとリストを表示できなくなりました。

Bottleチュートリアルの問題点

1
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
1
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?