一 视图 Django REST framwork 提供的视图的主要作用: 控制序列化器的执行(检验、保存、转换数据) 控制数据库查询的执行 1.1 试图配置 # drf有默认的配置文件 》先从项目的setting中找,找不到,采用默认的 # drf的配置信息,先从自己类中找--》项目的settin ...
分类:
其他好文 时间:
2020-07-09 16:44:22
阅读次数:
76
//初始化点赞 var $praise_id = '<?php echo $praise; ?>'; $(function () { if ($praise_id){ $(".bor:eq(0)").css({ border: "1px solid #06c1ae", "border-radius" ...
分类:
其他好文 时间:
2020-07-08 15:36:19
阅读次数:
83
1一 序列化器-Serializer 作用: 1. 序列化,序列化器会把模型对象转换成字典,经过response以后变成json字符串 2. 反序列化,把客户端发送过来的数据,经过request以后变成字典,序列化器可以把字典转成模型 3. 反序列化,完成数据校验功能 1.1 定义序列化器 Djan ...
分类:
其他好文 时间:
2020-07-07 15:00:18
阅读次数:
73
效果图: 生成一个title为my window的窗口,尺寸为500x300 包含一个Label,文字为 “you hit me” 包含一个Button,文字为“hit me”,点击Label文字消失,再点击Label文字出现 import tkinter as tk # 定义窗口 window = ...
分类:
其他好文 时间:
2020-07-06 18:03:02
阅读次数:
54
1、python反转字符串 '''第一种:使用字符串切片''' s = 'Hello World' print(s[::-1]) # dlroW olleH '''第二种:使用列表的reverse方法''' l = list(s) l.reverse() print( "".join(l) ) # ...
分类:
编程语言 时间:
2020-07-06 11:14:23
阅读次数:
58
一、基本语法 assert expression1, ["," expression2] x, y = 1, 2 assert x == y, "not equal" # 等价于下面的语法: x, y = 1, 2 if __debug__ and not x == y: raise Asserti ...
分类:
其他好文 时间:
2020-07-03 21:34:40
阅读次数:
50
本章是关于异常内容讲解的最后一章,重要说明关于异常的设计,就是如何用好异常 本章重点内容: 1、嵌套异常处理程序 2、异常的习惯用法 3、异常设计的建议与陷阱 接下来展开说明 1、嵌套异常处理程序 前面的例子中,我们只是使用了单个的try语句来捕捉异常,如果try语句中还有try语句,从代码运行的控 ...
分类:
编程语言 时间:
2020-06-26 16:34:54
阅读次数:
83
Linux git管理项目遇到的问题 ImportError: Failed to initialize: Bad git executable. The git executable must be specified in one of the following ways: - be incl ...
分类:
系统相关 时间:
2020-06-24 15:41:37
阅读次数:
129
方法一:强制杀死 import threading import time import inspect import ctypes def _async_raise(tid, exctype): if not inspect.isclass(exctype): raise TypeError("O ...
分类:
编程语言 时间:
2020-06-23 10:30:25
阅读次数:
129
https://www.bilibili.com/video/BV1S4411E7LY?p=2 2/46 P101 Dart介绍 Win Mac上面分别搭建Dart环境 开发工具配置 以及运行Dart P202 Dart 入口方法介绍 Dart打印 Dart注释 Dart变量 常量申明 变量命名规则 ...
分类:
其他好文 时间:
2020-06-20 10:55:06
阅读次数:
92