1.查看路径 show variables like 'datadir'; 2.show databases; 3.create database course; 4.use course; 5.create table student(id type); 6.show full fields fr ...
分类:
数据库 时间:
2020-05-25 12:41:39
阅读次数:
92
状压dp 题意 有一块 m 行 n 列的农场地形,要在 ‘1’ 上养牛,并且相邻上下左右不能同时养牛。 问:有多少种方案来养牛? 思路 先看第一行样例 1 1 1,肯定不能相邻养牛,所以有以下几种情况 0 0 0 0 0 0 1 1 0 1 0 2 1 0 0 4 1 0 1 5 当加上第二行的时候 ...
分类:
其他好文 时间:
2020-05-23 11:43:14
阅读次数:
56
作者:肖汉松 blog.xiaohansong.com/2016/03/13/null in java string/ 最近在读《Thinking in Java》,看到这样一段话: _Primitives that are fields in a class are automatically i ...
分类:
编程语言 时间:
2020-05-20 12:26:52
阅读次数:
57
from flask_wtf import FlaskFormfrom wtforms.fields.html5 import DateTimeLocalFieldclass MyForm(FlaskForm): start_dt = DateTimeLocalField('Start Time') ...
分类:
其他好文 时间:
2020-05-19 22:23:49
阅读次数:
61
Form 类中的每个字段不仅负责验证数据,而且还负责“清理”它 — 将其规范化为一致的格式。—— Django 文档 序列化器字段处理原始值和内部数据类型之间的转换。它们还处理验证输入值,以及从父对象检索和设置值。 注意: 序列化器字段都声明在 fields.py 中,但按照惯例,应该使用 from ...
分类:
其他好文 时间:
2020-05-16 12:14:09
阅读次数:
59
1.谷歌浏览器(WebKit内核): //滚动条设置 .element::-webkit-scrollbar{ width: 10px; height: 10px; } //滚动槽设置 .element::-webkit-scrollbar-track { border-radius: 10px; ...
分类:
其他好文 时间:
2020-05-15 18:25:36
阅读次数:
78
研究了很长时间才成功。 假如有比较复杂的json串需要通过post提交: { "links": [], "fields": [], "children": { "serverRuntimes": { "links": [], "fields": ["name"], "children": { "JM ...
分类:
Web程序 时间:
2020-05-14 10:28:15
阅读次数:
68
https://blog.csdn.net/qq_41664845/article/details/81408682?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonec ...
分类:
其他好文 时间:
2020-05-10 11:11:30
阅读次数:
63
collopse { "size":3, "query":{ "more_like_this":{ "fields" : ["remark"], "like" : ["特价","套装" ], "min_term_freq" : 1, "max_query_terms" : 1 } } , "coll ...
分类:
编程语言 时间:
2020-05-08 18:08:06
阅读次数:
188
items.py class LianhezaobaospyderItem(scrapy.Item): # define the fields for your item here like: # name = scrapy.Field() # pass body=scrapy.Field() li ...
分类:
编程语言 时间:
2020-05-07 18:11:01
阅读次数:
96