refers专题

The method ** from the type UsrTokenBo refers to the missing type HttpSession

关于如题的错误,说是缺少HttpSession。而且还会有一个错误  The import javax.servlet cannot be resolved   解决:在报错的HttpSession的Import上点击  fix project setup,确定就好了。 至于是什么原因先不管,记录下来。

The method getContextPath() from the type HttpServletRequest refers to the miss

运行程序报错   提示如下:The method getContextPath() from the type HttpServletRequest refers to the missing type    解决方法:   1 右击该项目 - Build Path - Configure Build Path , 在 Libraries 选项下,会发现有个出错的jre

Djang中迁移文件AUTH_USER_MODEL refers to model ‘users.UserProfile‘ that has not been installed

使用django自带的 AbstractUser 扩展之后,更改AUTH_USER_MODEL = 'users.UserProfile’属性后,进行数据库迁移时,出现如下报错: 其实就是没有及时迁移数据库 Tools——Run manage.py task—— makemigrationsmigrate 必要时删除migrations目录下除了_init_.py之外的文件再次执行以上