码迷,mamicode.com
首页 >  
搜索关键字:php this self parent    ( 101326个结果
Django(61)认证组件源码分析
认证组件源码入口 APIView下的dispatch下的self.initial(request, *args, **kwargs),源码如下: def initial(self, request, *args, **kwargs): """ 在调用方法处理程序之前运行任何需要发生的事情 """ # ...
分类:其他好文   时间:2021-06-13 09:21:54    阅读次数:0
leetcode-python-汉明距离
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:编程语言   时间:2021-06-11 19:07:12    阅读次数:0
sublime常用的插件
官方插件地址:https://packagecontrol.io/ package control//插件安装管理,首先安装,通过ctrl+shift+p调出控制台 pretty json//json格式化 'sublimeLinter','sublimeLinter-php'//php代码错误提示 ...
分类:其他好文   时间:2021-06-11 18:34:22    阅读次数:0
PHP的Sodium加密扩展函数了解
这是本次加密扩展系列的最后一篇文章,也是我们要学习了解的最后一个 PHP 加密扩展。Sodium 出现的目的也是为了代替 Mcrypt 这个原来的加密扩展。在 PHP7.2 之后,Mcrypt 已经被移除,在 PHP7.1 时就已经被标记为过时。不过,Sodium 扩展的应用也并不是很多,大部分情况 ...
分类:Web程序   时间:2021-06-11 18:31:04    阅读次数:0
thinkphp6 workerman 定时器操作控制器的方法
一、安装workman composer require workerman/workerman 二、创建 Timer 命令 php think make:command Timers 三、实现Timer <?php declare (strict_types = 1); namespace app ...
分类:Web程序   时间:2021-06-11 17:46:22    阅读次数:0
docker部署多个php站点
1、安装docker 2、拉取镜像 docker pull mysql:5.7 docker pull php:7.3-fpm docker pull nginx 4、创建mysql容器 docker run --name mysql -v $PWD/conf:/etc/mysql/conf.d - ...
分类:Web程序   时间:2021-06-10 18:52:31    阅读次数:0
【问题解决】SpringBoot工程无法找到父依赖 parent-pom Failure to find com.xxx:parent-pom:pom:1.0.0.RELEASE
总结下碰到的BUG,之前遇到忘记记录下来,导致又进行了重复无用的搜索定位解决BUG操作。 问题:Non-resolvable parent POM for com.alili:base-model:[unknown-version]: Failure to find com.alili:parent ...
分类:编程语言   时间:2021-06-10 17:48:24    阅读次数:0
leetcode-python-FizzBuzz
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:编程语言   时间:2021-06-10 17:39:18    阅读次数:0
PyQt5实战——《点击事件》
演示 代码 from PyQt5.QtWidgets import * import sys class pushButton(QWidget): def __init__(self): super(pushButton,self).__init__() # 对方法进行调用 self.initUI( ...
分类:其他好文   时间:2021-06-09 15:30:07    阅读次数:0
Django(53)二次封装Response
前言 有时候我们使用drf的Response,会发现默认返回的格式不太友好,每次我们都需要写入以下的格式 return Response({ "status": 0, "message": "成功", "results": serializer.data }) 这样会非常麻烦,我们想默认就有stat ...
分类:其他好文   时间:2021-06-09 15:29:52    阅读次数:0
101326条   上一页 1 ... 10 11 12 13 14 ... 10133 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!