内容管理的简单实现

pull/1121/head
梁宇奇 2025-10-31 17:57:34 +08:00
parent a14b5f4fca
commit c51f44c568
1 changed files with 2 additions and 2 deletions

View File

@ -233,8 +233,8 @@ public class CommonController {
@ApiOperation("获取html内容")
@GetMapping("/html/content/{title}")
public R getHtmlContent(@PathVariable("title") String title) {
return R.ok(htmlService.getHtmlContent(title));
public String getHtmlContent(@PathVariable("title") String title) {
return htmlService.getHtmlContent(title);
}
/**