- 浏览: 265092 次
- 性别:
- 来自: 北京
最新评论
文章列表
https://visualstudio.microsoft.com/zh-hans/thank-you-downloading-visual-studio/?sku=Community&rel=15
Mysql update语句join别的表
- 博客分类:
- mysql
举例:
update `产品指标` left JOIN `指标` on `产品指标`.`指标`=`指标`.id set `产品指标`.`能力域`=`指标`.`能力域`
1. 修改mysql数据库的user表中的root记录的host为%
2. 找到C:\ProgramData\MySQL\MySQL Server 5.7\my.ini, 在mysqld的配置项里增加一条bind-address=0.0.0.0,改前停服务,改后启动服务。
3. 端口要放开,尤其是云服务器的安全组里,必须添加IP为0.0.0.0/0, 端口为TCP:3306的安全组,并绑定到实例以及弹性网卡,而且需要重启。
适用于开发和生产共用一个webpack.config.js的情况:
const isProduction = process.argv[process.argv.indexOf('--mode') + 1] === 'production';
出处:(https://stackoverflow.com/questions/49274713/get-mode-in-webpack-config-webpack-4)
react的render中使用Promise
- 博客分类:
- react
render中使用promise成功后的flag, 在componentWillMount中使用promise, 在promise成功回调中调用setState强制重新render。
导入antd的style文件
- 博客分类:
- javascript
有时候我们只是想利用antd已经定义好的样式,但是并不想用相对应的组件,那么可以通过类似如下方式引用:
import 'antd/es/grid/style/css'
上面这句话会将Grid组件对应的css引入到前端模块中,具体路径可以到node_modules下面去查
(本文为作者johnsmith9th原创,未经作者许可禁止转载,如需商务合作请联系2048748238@qq.com)
下面给一个名叫ComponentLoader的class批量添加loadXXX方法并输出XXX为全局变量。
(function(){
__component_names.forEach(function(cmpname){
Object.defineProperty(ComponentLoader.prototype, `load${cmpname}`, {
enumerable: true,
configurable: false,
...
表格table固定列头
- 博客分类:
- css
<html>
<head>
<style>
.table-header-fixed>thead th {
position:sticky;
top:0;
background-color:white;
opacity:1;
z-index:10;
}
</style>
</head>
<body>
<div style="overflow-y:auto;max-height:100px">
<table class="table-hea ...
打开nginx.conf,放开443端口Server的注释并修改如下:(注意两个ssl证书文件放到conf目录下和nginx.conf同级),这样的话访问https://xxx.xxxxxxx.com/classstar/就会转发到以8081端口启动的普通http服务器项目的根目录。
server {
listen 443 ssl;
server_name xxx.xxxxxxx.com;
ssl_certificate 1_xxx.xxxxxxx.com_bundle.crt;
...
文章来源:(http://esus.com/applying-css-to-an-html-rendered-jlabel/)
import javax.swing.text.html.*;
import javax.swing.text.*;
import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
import java.io.*;
public class Main extends JFrame {
public Main(StyleSheet s) ...
centos安装桌面
- 博客分类:
- linux
yum groupinstall “X window system”
yum groupinstall “Desktop”
yum groupinstall “Chinese Support”
eclipse 设置文件编码UTF-8
- 博客分类:
- eclipse
Window菜单->Preferences-->General-->Workspace, 页面中找到Text file encoding然后修改即可。
如下所示:<img width="10" height="10" style="opacity:0"/>