10月29日
sh-3.2# ls -l
total 32
drwxr-xr-x 6 wulili staff 204 10 28 21:29 .idea
-rwxrwxrwx 1 root staff 12288 10 28 15:01 db.sqlite3
-rwxrwxrwx 1 root staff 804 10 28 14:59 manage.py
drwxrwxrwx 2 root staff 68 10 28 20:46 media
drwxrwxrwx 10 root staff 340 10 28 21:08 mysite
drwxr-xr-x 9 root staff 306 10 28 21:30 order
drwxr-xr-x 2 wulili staff 68 10 28 20:56 templ
sh-3.2# pwd
/users/wulili/mysite
sh-3.2# ls -l
total 32
drwxr-xr-x 6 wulili staff 204 10 28 21:29 .idea
-rwxrwxrwx 1 root staff 12288 10 28 15:01 db.sqlite3
-rwxrwxrwx 1 root staff 804 10 28 14:59 manage.py
drwxrwxrwx 2 root staff 68 10 28 20:46 media
drwxrwxrwx 10 root staff 340 10 28 21:08 mysite
drwxr-xr-x 9 root staff 306 10 28 21:30 order
drwxr-xr-x 2 wulili staff 68 10 28 20:56 templ
sh-3.2# cd order/
sh-3.2# ls -l
total 40
-rw-r--r-- 1 root staff 0 10 28 21:30 __init__.py
-rw-r--r-- 1 root staff 63 10 28 21:30 admin.py
drwxr-xr-x 3 root staff 102 10 28 21:30 migrations
-rw-r--r-- 1 root staff 98 10 28 21:30 models.py
-rw-r--r-- 1 root staff 60 10 28 21:30 tests.py
-rw-r--r-- 1 root staff 63 10 28 21:30 views.py
sh-3.2# pwd
/users/wulili/mysite/order
sh-3.2#
sh-3.2#
sh-3.2# ps -ef|grep mysite
0 5328 3381 0 10:02下午 ttys000 0:00.00 grep mysite
sh-3.2# pwd
/users/wulili/mysite/order
sh-3.2# chmod -r 777 order/ 賦權
sh-3.2# ls -l
total 32
drwxr-xr-x 6 wulili staff 204 10 28 22:13 .idea
-rwxrwxrwx 1 root staff 12288 10 28 15:01 db.sqlite3
-rwxrwxrwx 1 root staff 804 10 28 14:59 manage.py
drwxrwxrwx 2 root staff 68 10 28 20:46 media
drwxrwxrwx 10 root staff 340 10 28 22:02 mysite
drwxrwxrwx 9 root staff 306 10 28 21:30 order
drwxr-xr-x 2 wulili staff 68 10 28 20:56 templ
sh-3.2# sh
編寫views.py 如下
編寫setting.py如下
編寫urls.py如下
加入
from order.views import index order.view是index函式所在的路徑
= [url(, admin.site.urls),
url(, index), --index是函式名
報錯資訊如下:
萬分感謝這位朋友的分享
最後終於不報錯了
訪問位址
終於成功了。。好費勁呀。。嗚嗚嗚嗚嗚。提供給大家,供初學者參考了。都是我的寶貴經驗呀。
django學習筆記之登入
在測試admin成功之後我開始寫web的第乙個功能,登入。順序如下 1.首先在url裡面新增登入,我把登入的檔案放在account.py下面,所以url寫為 url r accounts login sys pm.account.userlogin name userlogin 這裡的name引數為...
Django之專案的登入
今天這個專案的登入是延續之前的專案做的補充,首先登入的話要和資料庫關聯,並且資料庫中不能有相同的使用者名稱,接下來我們來介紹下專案的流程和操作。1.我們延續前面的專案,也會講一些前面講過的 這裡是djangoproject容器的urls.py檔案,我用箭頭指定的是我要用的 和命名空間的名字,專案根據...
Django框架之登入案例
內容 1 request.get和request.post 2 獲取get方法提交和post方法提交的資料 一 登入案例 登入邏輯 post請求 前端 doctype html html lang en head meta charset utf 8 title title title head b...