3. 在專案setting.py檔案中增加如下配置
import sys
5. 在專案的urls.py檔案中也可以直接寫
urlpatterns = [而不需要寫成這樣url(r"^user/", include("user.urls", namespace="user")), # 使用者模組
url(r"^cart/", include("cart.urls", namespace="cart")), # 購物車模組
url(r"^order/", include("order.urls", namespace="order")), # 訂單模組
url(r"^", include("goods.urls", namespace="goods")), # 商品模組
]
urlpatterns = [
]
專案中有多個resource資料夾時,load問題
由於resources.load需要把資源放在resources資料夾裡,我一開始只用了乙個resources資料夾,資源不好分類,其實unity可以有多個resources資料夾,出於好奇測試了一下幾種情況。1 resources資料夾名字大小寫 在ngui資料夾下的resources資料夾裡放了...
Django 003 建立多個應用拆分專案
django fuhx testmachine hellodjango tree two two admin.py init py migrations init py models.py tests.py views.py 1 directory,7 files django.contrib.ad...
Django 專案中設定快取
一.配置檔案settings.py中 設定django快取存放位置為redis資料庫,並設定乙個預設 default 選項,在redis中 配置檔案 etc redis redis.conf 開啟了rdb持久化儲存 pip install django redis,然後在檢視中可以通過 from d...