使用了PyCharm一鍵式搭建Django所以基本配置就不多說(shuō)了
問(wèn)題1
靜態(tài)文件
將博客從falsk移植到Django的時(shí)候靜態(tài)文件配置出了問(wèn)題###
解決方法
Django setting.py中設(shè)置如下:
STATIC_URL = '/static/'
在模板中使用:
{% load staticfiles %}
<link rel="stylesheet" type="text/css" href={% static 'css/bootstrap.min.css' %}>
<link rel="stylesheet" type="text/css" href={% static 'css/bootstrap-theme.min.css' %}>
<link rel="stylesheet" type="text/css" href={% static 'css/styleBlog.css' %}>
便可以正常的顯示渲染之后的網(wǎng)頁(yè)了