一、ModelForm的基本用法示例: ModelForm所有属性: ModelForm用于验证用户数据:is_valid() ModelForm用于创建数据:save() ModelForm用于初始化:ModelForm(instance=model_obj) ModelForm用于更新 :Mod ...
分类:
其他好文 时间:
2019-11-28 21:03:41
阅读次数:
70
在java中使用https访问数据时报异常: 需要使用keytool工具,将对应域名的证书导入到jdk的cacerts中,这个证书可以是*.crt,*.cer等证书 cacerts包含了很多CA证书,位置在Java的安装目录: Java\jdk1.8.0_181\jre\lib\security\c ...
分类:
编程语言 时间:
2019-11-18 18:16:13
阅读次数:
89
问题一: pi表示取第i个单,di表示送第i个单。di不能在pi的前面。给一个取单送单的顺序,问是否是valid顺序。 问题二: pi表示取第i个单,di表示送第i个单。di不能在pi的前面。给一个n,显示所有正确的顺序。 ...
分类:
其他好文 时间:
2019-11-18 09:26:58
阅读次数:
66
Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio ...
分类:
其他好文 时间:
2019-11-17 12:31:52
阅读次数:
68
nginx服务器图片防盗链的方法<pre> location ~* \.(gif|jpg|png|jpeg)$ { expires 30d; valid_referers *.shuchengxian.com www.shuchengxian.com; if ($invalid_referer) { ...
分类:
其他好文 时间:
2019-11-17 10:40:17
阅读次数:
77
当在controller 中使用@Valid+ BindResult 和在参数实体中使用@NotNull,@NotEmpty等注解进行参数验证, 最后通过接口调用却正常进入方法体内没有进行参数验证的情况, 原因在于 1:BindResult封装了参数验证抛出的异常,也就是说异常被抛出但异常被捕获到了 ...
分类:
其他好文 时间:
2019-11-15 12:07:56
阅读次数:
294
SpringMVC的数据校验 一、注解方式 二、示例 Spring MVC本身没有数据校验的功能,它使用Hibernate的校验框架来完成。 1.导入pom节点 <!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-valid ...
分类:
编程语言 时间:
2019-11-14 10:07:05
阅读次数:
100
Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" Output: true Example ...
分类:
其他好文 时间:
2019-11-12 09:21:34
阅读次数:
80
```c /* Author: Zoro Date: 2019/11/10 Function: Valid Anagram Title: leetcode 242 anagram.c think: 桶排序思想 */ #include #include #include bool isAnagram(... ...
分类:
其他好文 时间:
2019-11-11 12:39:55
阅读次数:
99
转自https://blog.csdn.net/u012370185/article/details/95238828 通常用外部api进行卷积的时候,会面临mode选择。 这三种mode的不同点:对卷积核移动范围的不同限制。 设 image的大小是7x7(橙色部分),filter的大小是3x3(蓝 ...
分类:
其他好文 时间:
2019-11-06 13:21:25
阅读次数:
235