
解决问题
WikiLeake
IT爱好者
展开
-
python-docx在表格中加入图片的方法
使用Python-docx库在表格中加入图片的方法,亲测可用原创 2022-08-12 11:26:48 · 3054 阅读 · 0 评论 -
Python将时间戳转换为实际时间的方法
Python将时间戳转换为实际时间的方法原创 2022-08-11 16:56:50 · 2839 阅读 · 0 评论 -
Django xadmin一次性选择多图上传并展示
Django xadmin实现一次性选择多张图片并存储的一个方法, 以及详情页面多图展示代码结构图直接上源码models.py设置如下class picture(models.Model): imgs = UploaderImageField(max_length=500, verbose_name='活动图片', null=True, blank=True, upload_to='image/') #文件#单图的设置class Img(models.Model):原创 2022-01-23 12:23:54 · 1890 阅读 · 0 评论 -
解决Django xadmin 图片上传后在后台无法显示和下载,出现Page not found (404)错误
问题详情:使用xadmin作为管理后台时,图片上传后在后台无法显示和下载,出现Page not found (404)错误原因:media路由没有正确配置解决方法settings.py中的设置:# 设置上传文件的路径MEDIA_URL = '/media/'MEDIA_ROOT = os.path.join(BASE_DIR, 'media') #media即为图片上传的根路径urls.py中的设置from django.urls import path,re_pathfrom d原创 2022-01-23 09:42:19 · 1703 阅读 · 0 评论 -
django报错File “manage) from exc ^ SyntaxError: invalid syntax
Django报错: File "manage.py", line 14 ) from exc ^SyntaxError: invalid syntax出现此问题的原因是没有使用虚拟环境运行此项目。解决的方法:进入虚拟环境后重新运行此项目。s原创 2021-05-29 21:11:09 · 1086 阅读 · 0 评论 -
ubuntu将Django项目挂起在后台命令
使用如下命令,即可将Django项目在后台挂起,免杀死nohup python manage.py runserver 0.0.0.0:8000 &关闭终端后项目仍然可以继续运行原创 2021-05-17 19:35:23 · 479 阅读 · 0 评论 -
成功解决django迁移过程中出现的 return int(value) ValueError: invalid literal for int() with base 10: ‘‘错误
在django迁移过程中可能出现如下错误 Applying users.0006_auto_20210516_2004...Traceback (most recent call last): File "manage.py", line 15, in <module> execute_from_command_line(sys.argv) File "/home/xiaobai/.virtualenvs/vtbd1/lib/python3.6/site-packages/dj原创 2021-05-16 21:18:01 · 695 阅读 · 0 评论 -
解决echarts词云图只显示标题不显示字符云的问题
在使用echarts-wordcloud时,出现了只显示标题不显示字符云的问题,查看代码后发现,在导入echarts-wordcloud.js后才导入echarts.js解决的方法:先导入echarts.js,后导入入echarts-wordcloud.js,即可解决这个问题...原创 2021-05-14 10:12:59 · 1931 阅读 · 0 评论 -
使用Pyecharts做词云可视化展示
使用Pyecharts可做词云的展示,在制作完词云图生成HTML后可以编辑此文件,做出更多的页面。使用Pyecharts做词云展示的学习网站:https://www.cnblogs.com/zhuwjwh/p/12496852.html生成数据后可以查看HTML代码,并且编辑此页面echarts做词云可视化:https://blog.youkuaiyun.com/qq_42092076/article/details/115767833?spm=1001.2014.3001.5501...原创 2021-05-10 19:40:12 · 1004 阅读 · 0 评论 -
AttributeError: The vocab attribute was removed from KeyedVector in Gensim 4.0.0
出现如下问题,解决方法:更换gensim的版本pip install gensim ==3.0.0原创 2021-05-10 16:31:25 · 6815 阅读 · 4 评论 -
电脑可以聊微信但是无法上网页的解决方法
电脑可以聊微信但是无法上网页,ping不通百度的IP地址,一般是电脑的DNS出现错误,解决方案如下打开360安全卫士,点击功能大全中的断网急救箱,进行扫描,之后进行修复。问题即可解决。...原创 2021-05-06 10:53:35 · 22328 阅读 · 1 评论 -
成功解决Django运行中出现的without providing an app_name is not supported.错误
Django运行中出现了如下错误:django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute in the included module, or pass a 2-tuple containing the list of patterns and app_原创 2021-05-04 16:08:42 · 192 阅读 · 0 评论 -
Django前端页面显示时间年月日,不显示时分秒
Django前端页面显示时间年月日,不显示时分秒的方法:格式:2021-04-21{{ time|date:'Y-m-d' }}原创 2021-04-21 17:10:00 · 1629 阅读 · 0 评论 -
Django实现登录系统后才能进入某些页面的两种方法
Django实现不登录的情况下不能进入某些页面的功能# views.pyfrom django.contrib.auth.decorators import login_required# 在类之前需要添加以下两行代码from django.utils.decorators import method_decorator@method_decorator(login_required,name='dispatch')class LoginView(View): def get(self,原创 2021-04-20 17:22:20 · 2648 阅读 · 0 评论 -
成功解决TypeError at /usercenter/ as_view() takes 1 positional argument but 2 were given
django报错TypeError at /usercenter/ as_view() takes 1 positional argument but 2 were given报错前url的写法是这样的path("usercenter/",UserCenterView.as_view,name="usercenter"),修改url的写法,解决此问题path("usercenter/",UserCenterView.as_view(),name="usercenter"),...原创 2021-04-20 14:21:14 · 2915 阅读 · 1 评论 -
成功解决TypeError: ‘ManyRelatedManager‘ object is not iterable
Django前端页面显示多对多模型时出现如下错误TypeError: 'ManyRelatedManager' object is not iterable需要使用for标签遍历{% for a in dangqian.ziduan.all %}{{a.yinyongziduan}} {% endfor %}原创 2021-04-13 15:31:13 · 1943 阅读 · 0 评论 -
完美解决百度aistudio运行gensim的报错:AttributeError: module ‘numpy.random‘ has no attribute ‘default_rng‘
在百度aistudio.baidu.comjupter Notebook中运行gensim出现的如下错误原始代码from gensim import corpora,models,similarities报错---------------------------------------------------------------------------AttributeError Traceback (most recent call la原创 2021-04-13 11:02:53 · 1325 阅读 · 3 评论 -
成功解决:‘WSGIRequest‘ object has no attribute ‘get‘
Django在获取表单内容时出现了'WSGIRequest' object has no attribute 'get'以前的view.py的方法zhivalue = request.get("content")原因是在views中获取这个字段的方法是错误的修改为:zhivalue = request.POST.get("content")...原创 2021-04-12 15:22:32 · 4069 阅读 · 0 评论 -
成功解决PackageNotFoundError: Package not found at
Python使用docx库时from docx import Documentdocument = Document('1.docx')document.save('1.docx')报错PackageNotFoundError: Package not found at在确定引用路径正确的情况下,还是会报这个错,解决的方法之一是使用office软件重新创建一个新的docx文件,再次打开这个文件, 便 不会报错正在寻求一种能够直接解决此问题的方法...原创 2021-04-09 08:49:51 · 18085 阅读 · 4 评论 -
django获取前端button事件
<form action="" method="post">{% csrf_token %}<input type="hidden" name="shoucang" value=1> <button name="shoucang1">shoucang<button></form>思路是将前端form表单第一个input框隐藏,填入默认值,提交按钮类型为submmit,Django views.py中post请求获取name="shouc原创 2020-05-21 10:49:20 · 7928 阅读 · 2 评论 -
django.db.utils.OperationalError: (1426
Django开发中报错:django.db.utils.OperationalError: (1426, “Too big precision 100 specified for 'price'. Maximum is 65.”)原始models.py语句:price = models.DecimalField(max_digits=100, decimal_places=2)解决方案:price = models.DecimalField(max_digits=65, decimal_place原创 2020-05-18 16:06:58 · 682 阅读 · 0 评论 -
django开发中报错1366, Incorrect string value
Django开发中出现如下错误:(1366, "Incorrect string value: '\\xD0\\x9A\\xD0\\xB0\\xD1\\x82...' for column 'name' at row 1")解决方案创建数据库时使用utf-8,编码:create database 数据库名 default charset utf8 collate utf8_general_ci;...原创 2020-05-18 16:04:17 · 1084 阅读 · 0 评论 -
Django No module named corsheaders等问题的解决方案
Django开发中出现:No module named 'corsheaders解决方案:pip install django-cors-headersDjango开发中出现:No module named 'rest_framework'解决方案:pip install djangorestframeworkDjango开发中出现:import mysql.connector ImportError: No module named 'mysql'解决方案:pip install原创 2020-05-18 15:33:04 · 2357 阅读 · 0 评论 -
阿里云ubuntu安装pandas时报错Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-hm
阿里云ubuntu安装pandas时报错Command “python setup.py egg_info” failed with error code 1 in /tmp/pip-build-hmsdpo52/pandas/Collecting pandas Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/2f/79...原创 2020-05-08 16:37:31 · 1301 阅读 · 0 评论 -
jupyter重启失败KernelRestarter: restart failed
在jupyter启动时候发现出现了如下错误:[W 11:33:41.703 NotebookApp] KernelRestarter: restart failed[W 11:33:41.703 NotebookApp] Kernel cbc82194-2371-4227-87cf-859364cc09d4 died, removing from map.[W 11:34:26.889 No...原创 2020-05-07 11:54:45 · 5292 阅读 · 2 评论 -
Django2.1.7 xadmin后台开发中出现“你无权修改任何东西”的错误
Django2.1.7 xadmin后台开发中出现“你无权修改任何东西”的错误解决的办法from users.models import Userclass ChangeIntoAdmin(object): # 指向自定义的页面 object_list_template = 'base111.html' # 重写方法,把要展示的数据更新到 context de...原创 2020-04-17 09:15:30 · 712 阅读 · 1 评论 -
django开发中遇到No module named 'captcha的问题解决方法
在Django开发中遇到如下问题 from captcha.fields import CaptchaFieldModuleNotFoundError: No module named 'captcha.fields'解决方法:安装django-simple-captchapip install django-simple-captcha在开发中遇到以下错误HINT: Ad...原创 2020-04-16 16:27:17 · 6912 阅读 · 0 评论 -
Django的开发中遇到的一些问题以及解决方案,包括Django-xadmin的优化
1.Python报错: from django.urls import path, includeImportError: cannot import name 'path'解决方法:可能是Django的版本问题,查看当前虚拟环境的Django版本import djangodjango._get_version()如果Django的版本低于之前的版本,使用pip instal...原创 2020-04-15 20:02:20 · 789 阅读 · 0 评论 -
解决Django开发中pycharm连接不到虚拟机的问题
出现的问题在pycharm连接ubuntu时,出现了:Connection to '192.168.168.141' failed.Session.connect:java.netConnectException: Connection timed out connect解决的方法查看虚拟机的ip时,发现虚拟机的ip已经更换,所以在pycharm中,点击工具---->Deplo...原创 2020-04-02 10:19:57 · 972 阅读 · 5 评论 -
解决Django与echarts结合出现Uncaught SyntaxError: Unexpected token &和'的问题
出现的问题在Django与echarts结合中,出现了data:['];和Uncaught SyntaxError: Unexpected token &的问题出错的代码 xAxis: { type: 'category', boundaryGap: false, data: {{ name_list}} ...原创 2020-03-30 21:53:06 · 830 阅读 · 0 评论 -
使用gitee解决github下载仓库下载速度缓慢的问题
出现的问题在github下载代码时总是出现网络延时等问题导致下载不成功解决的办法将github中的仓库导入到gitee中,然后从gitee中下载仓库复制github中的仓库地址:在gitee中新建仓库:选择导入已有仓库,将刚刚复制的github地址填入打开刚刚新建的仓库,点击下载,即可高速下载github中的仓库...原创 2020-03-30 17:56:24 · 1461 阅读 · 0 评论 -
阿里云服务器出现 Resource stopwords not found. Please use the NLTK Downloader to obtain the resource:
出现的问题在阿里云ubuntu服务器布置Django项目中出现如下错误: Resource stopwords not found. Please use the NLTK Downloader to obtain the resource:具体如下所示:Watching for file changes with StatReloaderPerforming system ch...原创 2020-03-30 17:22:58 · 4782 阅读 · 3 评论 -
django项目开发中出现 raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.'
出现的问题:阿里云ubuntu服务器Django项目开发中出现 raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you have %s.' % Database.__version__)django.core.exceptions.ImproperlyConfigured: mysqlclient...原创 2020-03-30 17:07:13 · 1638 阅读 · 0 评论 -
JSP开发中tomcat访问URL带有中文名称的HTML文件显示404错误
出现的情况在JSP开发中,可能会出现tomcat访问带有中文名称的HTML文件显示404错误的情况,如下图所示:出现这种状况的原因:出现这种状况的原因是tomcat将URL中的中文字符经过Base64解析解决思路:打开Eclipse,点击Servers,找到Server.xml,打开这个文件找到如下代码: <Service name="Catalina"> &...原创 2020-03-18 08:42:14 · 1127 阅读 · 1 评论