子钦加油

扩大
缩小
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 32 下一页

2019年12月17日

Django实现标签联动以及xadmin中实现标签联动

摘要: 如图,即实现点击一个城市,出现对应的学校名称。开始一直以为是建立数据表的时候实现的,原来是通过ajax实现的。 思路:当get请求显示原始状态(即下拉框呈现全部内容)。当点击一个城市后,通过ajax的post方式提交,然后后端返回筛选的数据到前端,然后js先将所有的学校标签删除,创建后端传过来的学校 阅读全文

posted @ 2019-12-17 20:43 子钦加油 阅读(732) 评论(0) 推荐(0) 编辑

小程序跨页面数据传递与事件响应

摘要: 在实际工作中有很多场景需要在第二个页面中将用户操作之后的将数据回传到上一页面。接下来将我的方案分享给小伙伴。 本次示例采用 uni-app 框架和 weui 样式库 实现思路 创建一个 Emitter,用于事件处理 创建一个 ... 在实际工作中有很多场景需要在第二个页面中将用户操作之后的将数据回传 阅读全文

posted @ 2019-12-17 12:05 子钦加油 阅读(657) 评论(0) 推荐(0) 编辑

2019年12月15日

django admin显示多对多字段ManyToManyField

摘要: 参考文档https://jingyan.baidu.com/article/4e5b3e190f55c591901e24b3.html admin.py from .models import *class BookAdmin(admin.ModelAdmin): list_display = [" 阅读全文

posted @ 2019-12-15 23:50 子钦加油 阅读(1643) 评论(0) 推荐(0) 编辑

【pycharm】Unable to save settings: Failed to save settings. Please restart PyCharm解决

摘要: 1.Unable to save settings: Failed to save settings. Please restart PyCharm解决 将工程的.idea目录删掉,重启pycharm即可。 2.error:please select a valid Python interpret 阅读全文

posted @ 2019-12-15 21:43 子钦加油 阅读(3024) 评论(0) 推荐(0) 编辑

django-xadmin自定义widget插件(自定义详情页字段的显示样式)

摘要: 有时候我们想要修改xadmin详情页字段的显示方式,比如django默认的ImageField在后台显示的是image的url,我们更希望看到image的缩略图;再比如django将多对多字段显示为多选的下拉框或者左右选择栏的方式,向图片展示的这两种: 如果我想要上面这种带搜索功能并且只占一行的效果 阅读全文

posted @ 2019-12-15 20:59 子钦加油 阅读(1598) 评论(1) 推荐(0) 编辑

2019年12月12日

django 做 migrate 时 表已存在的处理

摘要: 在开发web的时候,如果是以前已存在的项目,项目下载下来后,为了使用测试库的数据,会直接将整个测试库(如sqlite3)拿到本机来。这种情况下,如果执行的顺序不对,很容易在执行migrate的时候出现数据库已存在的错误: django.db.utils.OperationalError: (1050 阅读全文

posted @ 2019-12-12 00:00 子钦加油 阅读(1289) 评论(0) 推荐(0) 编辑

2019年12月11日

python 中model.py详解

摘要: model详解 Django中遵循 Code Frist 的原则,即:根据代码中定义的类来自动生成数据库表。 创建表 基本结构 from django.db import models # Create your models here. class userinfo(models.Model): 阅读全文

posted @ 2019-12-11 23:56 子钦加油 阅读(5578) 评论(0) 推荐(0) 编辑

解决 python No migrations to apply 无法生成表

摘要: 第一步: 删除该app名字下的migrations文件。 第二步: 进入数据库,找到django_migrations的表,删除该app名字的所有记录。 delete from django_migrations; 第三步: python manage.py makemigrations pytho 阅读全文

posted @ 2019-12-11 23:51 子钦加油 阅读(329) 评论(0) 推荐(0) 编辑

2019年12月10日

django的使用INNODE的方式,排除错误MySQL Strict Mode is not set for database connection 'default'

摘要: 出现如下错误: 解决办法: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'mxshop', 'HOST': '127.0.0.1', 'PORT': '3306', 'USER': 'mxshop' 阅读全文

posted @ 2019-12-10 20:53 子钦加油 阅读(513) 评论(0) 推荐(0) 编辑

IndentationError: unindent does not match any outer indentation level

摘要: python中约到的问题,IndentationError: unindent does not match any outer indentation level占位问题,存在两种可能性:1.代码没有对齐 2.存在非法字符与其他格式的不可见的内容(输入法的问题) 解决: 1.TAB对齐代码 2.选 阅读全文

posted @ 2019-12-10 20:23 子钦加油 阅读(755) 评论(0) 推荐(0) 编辑

Mac中 pip3 install mysqlclient 报错

摘要: 主要错误提示如下: ld: library not found for -lssl clang: error: linker command failed with exit code 1 (use -v to see invocation) error: command 'clang' faile 阅读全文

posted @ 2019-12-10 14:22 子钦加油 阅读(1002) 评论(0) 推荐(0) 编辑

2019年12月9日

mac下如何搭建python开发环境

摘要: 1. 安装brew ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2. 安装 mysql #安装 1. brew install mysql #启动 2. brew 阅读全文

posted @ 2019-12-09 13:20 子钦加油 阅读(269) 评论(0) 推荐(0) 编辑

(python pip安装第三方库超时问题(raise ReadTimeoutErrorself._pool, None, 'Read timed out.')

摘要: (python pip安装第三方库超时问题(raise ReadTimeoutErrorself._pool, None, ‘Read timed out.’)pip工具安装百度经验链接: pip安装及环境变量配置. pip下载超时处理aise ReadTimeoutError(self._pool 阅读全文

posted @ 2019-12-09 11:38 子钦加油 阅读(6714) 评论(0) 推荐(0) 编辑

2019年12月8日

Push rejected: Push to origin/master was rejected

摘要: 首先是你的项目中有和和历史不符的东西Push rejected: Push to origin/master was rejected推拒绝:推送到起源/主人被拒绝解决办法:直接打开你要上传代码的文件夹位置鼠标右键git Bash Here然后直接下面两行命令解决问题 git pull origin 阅读全文

posted @ 2019-12-08 22:58 子钦加油 阅读(431) 评论(0) 推荐(0) 编辑

! [rejected] master -> master (non-fast-forward)

摘要: 当要push代码到git时,出现提示: error:failed to push some refs to ... Dealing with “non-fast-forward” errorsFrom time to time you may encounter this error while p 阅读全文

posted @ 2019-12-08 22:52 子钦加油 阅读(1486) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 32 下一页

导航

返回顶部