上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 83 下一页
摘要: include 命令在 http {...} 模块之下, /etc/nginx/conf.d/*.conf模块文件 server { ... } 阅读全文
posted @ 2020-12-02 10:21 winyh 阅读(1564) 评论(0) 推荐(0) 编辑
摘要: 1.检查nginx配置是否正确,确保http访问该网站是没问题的。 server { listen 443 ssl; server_name xxx.xxx.com; ssl_certificate /etc/pki/nginx/xxx.pem; ssl_certificate_key /etc/p 阅读全文
posted @ 2020-12-02 09:45 winyh 阅读(2784) 评论(0) 推荐(0) 编辑
摘要: import Component from "./Component"; import { Form, Button } from "antd"; const onFinish = (values) => { console.log("Success:", values); }; const For 阅读全文
posted @ 2020-11-27 12:11 winyh 阅读(360) 评论(0) 推荐(0) 编辑
摘要: const Component = ({ is, children, ...restProps }) => { const Tag = require("antd")[is]; if (!Tag) return false; return <Tag {...restProps}>{children} 阅读全文
posted @ 2020-11-27 11:33 winyh 阅读(1626) 评论(0) 推荐(0) 编辑
摘要: 主键: 1.不能重复、唯一 2.不使用任何业务相关的字段作为主键的基本原则(身份证号、手机号、邮箱地址这些看上去可以唯一的字段,均不可用作主键) 3.自增整数类型、全局唯一GUID类型 外键: 1.关系模型(一对一、一对多、多对多) 索引: 1.提升巨量数据查询效率 2.索引是关系数据库中对某一列或 阅读全文
posted @ 2020-11-20 17:50 winyh 阅读(67) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 83 下一页