问题描述
我希望能够:
- 获取任何给定的Font Awesome类名(
@GetMapping(value = "/users/copy",params = {"type=OLD"}) public ResponseEntity<UserDto> copyUserWithTypeOld(@RequestParam UserTypeEnum type) { ... } @GetMapping(value = "/users/copy",params = {"type=NEW"}) public ResponseEntity<UserDto> copyUserWithTypeNew(@RequestParam UserTypeEnum type) { ... }
等)的Font Awesome 5 Unicode字符 - 将该unicode字符绘制到html5画布上
我将如何去做?