摘要:
vux 修改static路径:config/index.js 修改以后生成的引用会变 iview修改生成引用:webpack.dev.config.js 阅读全文
摘要:
下载搭建项目:链接:https://pan.baidu.com/s/1jHZ3Kkm 密码:5k4q 项目源码: GZAdmin_API:https://github.com/GarsonZhang/GZAdmin_API GZAdmin_Page:https://github.com/Garson 阅读全文
摘要:
执行命令: npm cache clean --force 然后再安装 搞定 阅读全文
摘要:
// return new Promise(function (resolve, reject) { // ajaxRemote.post('/module/create', data) // .then(res => { // resolve(res); // }... 阅读全文
摘要:
sort() 方法用于对数组的元素进行排序。但是排序结果就有点坑了,都不按常规出牌的: 1、对了,跟想像中一样;2、是因为字符串根据ASCII码进行排序,而小写字母a的ASCII码在大写字母之后,可以理解;3、什么鬼?三岁小孩都不会错,现在居然...看了大神的一些讲解是:因为Array的sort() 阅读全文
摘要:
log4net配置: 添加LoggerHelper.cs 添加log4net配置文件log4net.config 将配置文件log4net.config应用到程序集: 直接调用LoggerHelper.Info(msg);就可以了 生成的目录结构: WebAPI 日志记录: 添加一个类继承自Dele 阅读全文
摘要:
// DELETE api//5 [HttpGet] public void delete(string id) { #region 官方推荐写法 /* var a = entities.base_module.FirstOrDefault(m => m.rowID == ... 阅读全文
摘要:
样式的优先级 多重样式(Multiple Styles):如果外部样式、内部样式和内联样式同时应用于同一个元素,就是使多重样式的情况。 一般情况下,优先级如下: (外部样式)External style sheet <(内部样式)Internal style sheet <(内联样式)Inline 阅读全文