码迷,mamicode.com
首页 >  
搜索关键字:css3 media query 响应式布局    ( 26736个结果
Python 配置绝对路径和相对路径(为了解决文件夹内class文件调用别的文件夹内class的问题)
相对路径问题: import os import sys # sys.path.append(os.getcwd()) # filename = "E:\python小脚本\测试导入\projects\project1\project1_1\Text1_1.txt" # 绝对路径 # filenam ...
分类:编程语言   时间:2021-04-14 12:44:36    阅读次数:0
数据的标准化和归一化
参数的标准化与归一化 注:中文资料中从英文文献中学习,提到normalization和standardization时候,往往将其翻译为“标准化”和“归一化”。但是很坑的一点是,由于翻译软件也没有很好的区分两者,所以几乎所有人都将两者混为一谈,甚至A文章对于“标准化”和“归一化”翻译的对应和B文章是 ...
分类:其他好文   时间:2021-04-14 12:19:16    阅读次数:0
Restful API
package com.example.query; import java.io.Serializable; public class UserQuery implements Serializable { private Integer id; private String username; ...
分类:Windows程序   时间:2021-04-13 12:17:10    阅读次数:0
react的Router的exact、path、component、strict属性
type Location = { //这是一个location pathname: Pathname; search: QueryString; query: Query; state: LocationState; action: Action; key: LocationKey;};class ...
分类:其他好文   时间:2021-04-13 12:11:38    阅读次数:0
CSS3三角形不断放大特效
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS3三角形不断放大特效</title> <link rel="stylesheet" href="css/style.css"> </head> <styl ...
分类:Web程序   时间:2021-04-13 12:07:21    阅读次数:0
Full Binary Tree
题目来源 Full Binary Tree Description In computer science,a binary tree is a tree data structure in which each node has at most two children. Consider an ...
分类:其他好文   时间:2021-04-13 12:02:15    阅读次数:0
Database | 浅谈Query Optimization (2)
为什么选择左深连接树 对于n个表的连接,数量为卡特兰数,近似$4^n$,因此为了减少枚举空间,早期的优化器仅考虑左深连接树,将数量减少为$n!$ 但为什么是左深连接树,而不是其他样式呢? 如果join算法为index join或者hash join,当两张表进行连接的时候,需要为左表建立哈希映射或者 ...
分类:数据库   时间:2021-04-12 12:06:32    阅读次数:0
requestAnimationFrame介绍
一、什么是 requestAnimationFrame? requestAnimationFrame常用来执行动画效果。 实现动画效果的方法比较多,Javascript 中可以通过定时器 setTimeout 来实现,css3 可以使用 transition 和 animation 来实现,html ...
分类:其他好文   时间:2021-04-10 12:54:18    阅读次数:0
mongoDB -- 更新文档 update
###1. db.collection.update(query, update, options) 1.1 作用: 修改集合中的一个或多个文档,根据更新参数,该方法可以修改一个或多个文档中的特定字段的值,或完全替换现有文档 。 1.2 语法: db.collection.update( <quer ...
分类:数据库   时间:2021-04-09 13:24:26    阅读次数:0
将模型对象转换为json字典:model_to_dict
例子 from rest_framework.views import APIView class StudentAPIView(APIView): def get(self, request): pk = request.query_params.get(pk) student_obj = Stu ...
分类:Web程序   时间:2021-04-08 13:26:42    阅读次数:0
26736条   上一页 1 ... 8 9 10 11 12 ... 2674 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!