1
4

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.

TemplateDoesNotExist の対処法について

Last updated at Posted at 2019-05-01

Djangoの最初の方で、つまずいたところを初心者向きに紹介します。

version
python 3.7.3 Django 2.1

views.pyで外部のテキストを読み込もうとした際にエラーが起きました。
スクリーンショット 2019-05-01 19.42.48.png

スクリーンショット 2019-05-01 18.40.22.png

サーバーを起動した際にブラウザにこんなエラーが出てしまいました
テキストファイルが読み込めませんと書かれています。
エラーの解決策を調べていくと、以下の2つのうちどちらかだと書いてありました。

①ファイルが正常に読み込めていない
②ファイルが存在しない

自分の場合は②をしっかり確認し、誤字なども見つからなかったため①の解決策を調べました。
無事解決出来たので、流れを説明します。

1 プロジェクトフォルダの直下にある、settings.pyを開く

2 55〜行目ぐらいにあるこの部分の、’DIRS’が空欄になっていることを確認する スクリーンショット 2019-05-01 19.58.31.png

3 ’DIRS’の部分にos.path.join('アプリケーションフォルダ名','文章が書いてあるフォルダ名')を入れる

スクリーンショット 2019-05-01 20.05.01.png

以上を踏まえて実行した結果、ブラウザに表示されました。

1
4
1

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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?