摘要: 首先我们进入mysql,查看mysql中所有用户权限 use mysql; select user,host from user; 我们发现host默认都是localhost访问权限 我们要修改root的远程访问权限 update user set host ='%' where user='roo 阅读全文
posted @ 2024-02-29 11:49 小花园儿 阅读(143) 评论(0) 推荐(0)
摘要: 在django框架里运行继承父类是出现这么一个错误。 django.template.exceptions.TemplateSyntaxError: <ExtendsNode: extends "base.html"> must be the first tag in the template. 经 阅读全文
posted @ 2024-02-28 19:51 小花园儿 阅读(29) 评论(0) 推荐(0)