ES6 React 组件引用本地图片问题

最近在用create-react-app 脚手架自己写一个小项目,遇到了很多坑,其中有一个就是React 引用本地图片的问题,我的需求是,图片的路径写在json文件里,需要从后台读取json文件,然后读取到图片的路径,在前端渲染。那么问题来了,es6不支持在<img />标签内直接写图片的路径,即: <img src="../i...
emer 发布于  2019-4-6 14:23 

js封装

/     2、闭包的封装方式,在这个封装方法中,所有的实例成员都共享属性和方法     使得所有得方法和属性都私有且对象间共享     /     var Person=(function(){         /共享函数*/ &...
emer 发布于  2019-3-22 16:12 

webpack打包性能图形化分析

安装webpack-bundle-analyzer Webpack.config.js引入 let BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; 配置plugin: plugins: [n...
emer 发布于  2019-3-19 17:37 

axios拦截添加功能

import axios from 'axios' import { Message, MessageBox } from 'element-ui' import store from '../store' import { getToken } from '@/utils/auth' ...
emer 发布于  2019-3-14 10:24 

centos7设置时区

# timedatectl list-timezones # 列出所有时区 # timedatectl set-local-rtc 1 # 将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间 # timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海 其实不考虑各个发行版的差异化,...
emer 发布于  2019-3-14 10:15 

nodemailer node发送自定义邮箱邮件

const nodemailer = require("nodemailer"); //发送邮件的node插件 const smtpTransport = requi...
emer 发布于  2019-3-12 17:05 

nginx知识 nginx 重写(伪静态)

https://juejin.im/post/5c85a64d6fb9a04a0e2e038c?utm_source=gold_browser_extension proxy_pass 后跟的服务器URL值是否以 / 结尾的区别: 若 Nginx 收到请求为 https://ngxin_server_name/hello/world ...
emer 发布于  2019-3-12 09:32 

shell脚本执行错误 $'\r':command not found

Linux下有命令dos2unix 你只要输入dos2unix *.sh就可以完成转换工作了 如果命令不存在的话就用如下命令安装 yum install dos2unix -y
emer 发布于  2019-3-8 09:31 

centos7更换源

yum 的使用是很方便的,可能出现的问题就是源的下载速度不理想,所以需要更换。它的配置文件在 /etc/yum.conf,源列表在 /etc/yum.repos.d。 备份mv base.repo baserepo.repo.backup wget -o base.repo http:...
emer 发布于  2019-3-8 09:22 

babel 转es5

"@babel/core": "^7.0.0", "@babel/plugin-transform-runtime": "^7.3.4", "@babel/preset-env": "^7.3.4", "@babel/runtime": "^7.3.4", "babel-loader":...
emer 发布于  2019-3-7 10:58