创建静态文件目录

时间:2021-02-16 23:57:09

标签: python django

我目前正在使用最新版本的 django。我似乎在为我的静态文件目录创建路径时遇到困难。我得到的错误是“TypeError: _getfullpathname: path should be string, bytes or os.PathLike, not list”。

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<textarea id='ed'>
lorem ipsum
https://google.com
</textarea>

1 个答案:

答案 0 :(得分:0)

在您的基本目录(您的 manage.py 文件所在的位置)中创建一个文件夹并将其命名为 "static" 并将以下代码添加到您的 settings.py 文件中:

enter image description here

> STATIC_URL = '/static/'
> 
> STATICFILES_DIRS = [
>     STATIC_DIR, ]

enter image description here