3
0

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

モデル作成後に、サーバ起動&アクセス時に「TypyError:'set' object is not reversible」となる場合の確認箇所について(@Python/jango)

Posted at

#はじめに
今回は、Djangoアプリ作成過程で起きたエラーについて触れていこうと思います。

TypyError:'set' object is not reversible

モデル作成を行った後、サーバー起動しアクセスした際に発生しました。

結論としては、入力ミスでしたので内容を確認していきます。

参考記事

#エラー詳細
models.pyを編集した後に、
以下のコマンドでサーバ起動しアクセス。

$ python manage.py runserver

スクリーンショット 2020-12-15 23.46.35.png

#原因

アプリケーションフォルダ内のurls.pyの記述が以下の通りになっていました。。

urlpatterns = {
    path('', views.index, name='index'),
}

誤:{}

正:[]

#まとめ
基礎を確認しながら引き続き頑張ります!

参考にさせていただいた記事の作成者様ありがとうございました。

3
0
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
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?