国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

Django配置Bootstrap, js實現過程詳解

瀏覽:141日期:2024-04-16 17:15:58

1、首先在APP目錄下創建一個static文件夾

如圖:

Django配置Bootstrap, js實現過程詳解

# Application definitionINSTALLED_APPS = [ ’django.contrib.admin’, ’django.contrib.auth’, ’django.contrib.contenttypes’, ’django.contrib.sessions’, ’django.contrib.messages’, ’django.contrib.staticfiles’, ’appBook.apps.AppbookConfig’, ]

2、在settings.py中 最底部添加如下:

# Static files (CSS, JavaScript, Images)# https://docs.djangoproject.com/en/1.11/howto/static-files/STATIC_URL = ’/static/’STATIC_ROOT=( os.path.join(BASE_DIR,'appBook/static'),)

3、在html頁面頭部添加:

Django配置Bootstrap, js實現過程詳解

{% load staticfiles %}<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Title</title> <link rel='stylesheet' href='http://www.intensediesel.com/bcjs/{% static ’bootstrap/css/bootstrap.css’ %}' rel='external nofollow' > <style> .container{ margin-top: 80px; } </style></head><body>

4、在html模版頁面,可以用如下方式調用:

<img src='http://www.intensediesel.com/bcjs/{% static ’images/logo.gif’ %}' alt=''/> <img src='https://rkxy.com.cn/static/images/acer.gif' alt=''/> 推薦使用第二種,因為如果圖片名稱是動態的,可以通過views這么綁定: <img src='https://rkxy.com.cn/static/images/{{name}}.gif' alt=''/> css的引用同樣如此: <link rel='stylesheet' href='http://www.intensediesel.com/bcjs/{% static ‘style/base.css’ %}' rel='external nofollow' type='text/css'> <link rel='stylesheet' href='http://www.intensediesel.com/static/style/base.css' rel='external nofollow' type='text/css'> js的引用同樣如此: <script type='text/javascript' src='http://www.intensediesel.com/bcjs/{% static ‘js/jquery-1.8.3.min.js’ %}'/> <script type='text/javascript' src='https://rkxy.com.cn/static/js/jquery-1.8.3.min.js'/>可以用 python manage.py findstatic css/index.css 尋找 css

Django:locals()小技巧

locals()返回一個包含當前作用域里面的所有變量和它們的值的字典。

所以可以把views改寫為

def current_datetime(request): current_date = datetime.datetime.now() return render_to_response(’current_datetime.html’, locals())

這里要注意的是要把now重命名為current_date,因為模板需要的是這個變量名。

在template是如下定義的:

<html> <body> <font color = 'blue'>It is is now {{ current_date }}.</font> </body></html>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: JavaScript
主站蜘蛛池模板: 淳安县| 康定县| 镇沅| 佛学| 卢湾区| 白玉县| 太谷县| 牟定县| 泗洪县| 普格县| 都匀市| 曲麻莱县| 德江县| 绩溪县| 开阳县| 电白县| 南通市| 八宿县| 来宾市| 洪雅县| 论坛| 封开县| 策勒县| 临泉县| 黔南| 永嘉县| 广饶县| 益阳市| 三河市| 正镶白旗| 宜君县| 绥中县| 光泽县| 红桥区| 巴林右旗| 喀什市| 保靖县| 葫芦岛市| 讷河市| 治多县| 普洱|