用源码xadmin以后,用户就没办法打开了怎么解决?
来源:5-2 xadmin的安装
竹子Ya
2017-01-06
用pip的包没问题,用源码重新migrate以后,用户的这个就报错,其它model没问题。。。
写回答
3回答
-
这是因为你在编写userprofile之后才运行的migrate, 应该在编写userprofile之前运行migratge才会生成auth_user表, 如果你直接写了userprofile的model然后运行migrate, 就会直接不生成auth_user, 你根据课程的节奏来就不会这样了, 不要随意跳过章节
032017-04-26 -
赶路人林文
2017-01-07
你要在User app的adminx文件里注册UserProfile,老师没注册!代码如下:
from .models import UserProfile, EmailVerifyRecord, Banner class UserProfileAdmin(object): pass
还有:
xadmin.site.register(UserProfile, UserProfileAdmin)
222017-01-07 -
慕粉2023095444
2017-01-18
这种情况 只需要重新创建一个相同的project,然后删掉后台的数据库,什么都别做 ,直接migrations migrate 然后 再回到之前的project里重新migrations 一下就可以了 同样会遇到 提示要删除 auth | users的选择,还是选择yes 然后你再创建superuser 打开xadmin的页面就好了。
00
相似问题