上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 142 下一页
摘要: 数据迁移比较简单,单击工具选择数据传输 左边是旧服务器,右边是新服务器。在新服务器内建相同名字的数据库。然后左右同时选择,点下一步,再点击同步就好了。等待数据完成。 阅读全文
posted @ 2020-04-11 12:00 每天都要进步一点点 阅读(488) 评论(0) 推荐(1)
摘要: 步骤一:转储 SQL 文件 1.右击要被导出的数据库,点击“转储SQL文件”,修改文件名和文件位置后点击保存,等待程序执行。 2.执行完成后无错误点击关闭即完成了SQL文件的导出 步骤二:新建数据库 步骤三:运行SQL 文件 1.将sql文件拖到该数据库上,会出现“运行SQL文件”窗口,点击开始。执 阅读全文
posted @ 2020-04-10 12:00 每天都要进步一点点 阅读(1339) 评论(0) 推荐(1)
摘要: 1.方法一: // ES6对象数组所有属性去重,筛选每个数组项的字符 function unique(arr) { const map = new Map() return arr.filter( item => !map.has(JSON.stringify(item)) && map.set(J 阅读全文
posted @ 2020-04-09 12:00 每天都要进步一点点 阅读(1060) 评论(0) 推荐(1)
摘要: 1.情况一 componentWillUpdate 2.情况二: componentDidUpdate 3.情况三: render 阅读全文
posted @ 2020-04-08 12:00 每天都要进步一点点 阅读(968) 评论(1) 推荐(0)
摘要: 1.报错信息: Ignoring invalid timezone passed to Connection: +8:00. This is currently a warning, but in future versions of MySQL2, an error will be thrown 阅读全文
posted @ 2020-04-07 12:00 每天都要进步一点点 阅读(1773) 评论(0) 推荐(0)
摘要: 项目中,上传图片是通过 stream,上传excel是通过 file 接收的 config.multipart = { // fileSize: '50mb', // 文件大小 fileModeMatch: /^(\/tools\/excel\/import)$/, // '/tools/excel 阅读全文
posted @ 2020-04-06 12:00 每天都要进步一点点 阅读(1362) 评论(0) 推荐(0)
摘要: 1.代码 chatbot/index.tsx /** * 客服 */ import React, { useState, useRef } from 'react'; import { Button, Toast, InputItem } from 'antd-mobile'; import { R 阅读全文
posted @ 2020-04-05 12:00 每天都要进步一点点 阅读(497) 评论(1) 推荐(0)
摘要: 为了保证文件上传的安全,框架限制了支持的的文件格式,框架默认支持白名单如下: // images '.jpg', '.jpeg', // image/jpeg '.png', // image/png, image/x-png '.gif', // image/gif '.bmp', // imag 阅读全文
posted @ 2020-04-04 12:00 每天都要进步一点点 阅读(563) 评论(0) 推荐(0)
摘要: input file上传按钮的美化思路是,先把之前的按钮透明度opacity设置为0,然后,外层用div包裹,就实现了美化功能。 1.html <div className="file"> <input type="file" onChange={(e)=>{this.onChange(e)}} c 阅读全文
posted @ 2020-04-03 12:00 每天都要进步一点点 阅读(775) 评论(0) 推荐(0)
摘要: 1.安装模块 yarn add react-lazyload 2.使用 import LazyLoad from 'react-lazyload'; ... <Grid data={categoryList} columnNum={2} square={false} hasLine={false} 阅读全文
posted @ 2020-04-02 12:00 每天都要进步一点点 阅读(9137) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 142 下一页