摘要:
controller类 @PostMapping("/importData") public Result importData(MultipartFile file){ dictService.importDictData(file); return Result.ok(); } service 阅读全文
摘要:
CREATE DATABASE IF NOT EXISTS `yygh_cmn` CHARACTER SET utf8; USE `yygh_cmn`; # # Structure for table "dict" # CREATE TABLE `dict` ( `id` bigint(20) NO 阅读全文
摘要:
箭头函数提供了一种更加简洁的函数书写方式。基本语法是: 参数 => 函数体 箭头函数多用于匿名函数的定义 //传统方式定义函数 var f1 = function(a) { return a } //console.log(f1(3)) //es6使用箭头函数定义 //参数 => 函数体 var f 阅读全文