Navicat连接Mysql报错:Client does not support authentication protocol requested by server; 刚安装Mysql,想用Navicat去连接,然后就报错了,此处记录报错解决。 Navicat连接MySQL Server8.0版 ...
分类:
数据库 时间:
2019-01-15 14:34:15
阅读次数:
260
文章目录 1.连接路径:path.join([path1][, path2][, ...]) 2.路径解析:path.resolve([from ...], to) 3.对比 文章目录 1.连接路径:path.join([path1][, path2][, ...]) 2.路径解析:path.res ...
分类:
其他好文 时间:
2019-01-15 14:26:17
阅读次数:
270
今天照常打开idea,突然发现之前的启动配置出问题了,随后报了一个这个错: Run Configuration Error: Broken configuration due to unavailable plugin or invalid configuration data. 于是乎,查阅资料后 ...
分类:
其他好文 时间:
2019-01-15 14:15:41
阅读次数:
639
头:header 内容:content/container 尾:footer 导航:nav 侧栏:sidebar 栏目:column 页面外围控制整体布局宽度:wrapper 左右中:left right center 登录条:loginbar 标志:logo 广告:banner 页面主体:main ...
分类:
Web程序 时间:
2019-01-15 14:02:47
阅读次数:
213
第一步:先写好重置的样式。直接复制粘贴即可 写移动端另外加上的 在head里,style外需加上下面一句。 第二步:写头部 头部html 头部style 两个span的共同点写完了,接着分别微调不一样的地方 第三部,写导航nav 导航html。这里的class类名是点击效果。因为还没涉及js,暂时就 ...
分类:
移动开发 时间:
2019-01-14 23:15:29
阅读次数:
612
/*适配苹果X*/ @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) { .header_nav { top: 44px; } } /... ...
分类:
移动开发 时间:
2019-01-14 17:59:20
阅读次数:
451
一、路由时传递参数的方式 1、在查询参数中传递数据,如 相应的后台获取是:ActivedRoute.queryParams[id] 2、在路由路径中传递数据, 在路由定义时,定义为 3、在路由配置中传递数据 二、后台接收路由参数方式 1、snapshot和subscribe两种,区别在于在路由地址不 ...
分类:
其他好文 时间:
2019-01-14 14:46:28
阅读次数:
203
.bgLeft { position: absolute; left: -95px; background: url("../images/logo_1.png") left top; background-repeat: no-repeat; width: 328px; height: 146px ...
分类:
其他好文 时间:
2019-01-14 14:35:48
阅读次数:
214
HTML5的新特性 HTML5 中的一些有趣的新特性: 用于绘画的 canvas 元素 用于媒介回放的 video 和 audio 元素 对本地离线存储的更好的支持 新的特殊内容元素,比如 article、footer、header、nav、section 新的表单控件,比如 calendar、da ...
分类:
Web程序 时间:
2019-01-13 11:36:28
阅读次数:
217
我们可以使用linux的scp命令(scp无法在windows使用),加上mysql自带的mysqldump,能很快的完成数据库的迁移 将本地的数据库(music_db)导出为sql文件(music_db.sql) mysqldump -uroot -p music_db > music_db.sq ...
分类:
数据库 时间:
2019-01-12 20:56:08
阅读次数:
279