基于SpringBoot和Vue3的博客平台发布、编辑、删除文章功能怎么实现

其他教程   发布日期:2025年01月17日   浏览次数:245

这篇“基于SpringBoot和Vue3的博客平台发布、编辑、删除文章功能怎么实现”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“基于SpringBoot和Vue3的博客平台发布、编辑、删除文章功能怎么实现”文章吧。

1. 后端Spring Boot实现

我们将使用Spring Boot作为后端框架,并使用MySQL作为数据库。

1.1 创建Article实体类

首先,在com.example.demo.entity包下创建一个名为Article.java的新类,并添加以下内容:

  1. public class Article {
  2. private Integer id;
  3. private String title;
  4. private String content;
  5. private Integer authorId;
  6. // Getter and Setter methods
  7. }

1.2 创建ArticleMapper接口

  1. com.example.demo.mapper
包下创建一个名为
  1. ArticleMapper.java
的新接口,并添加以下内容:
  1. @Mapper
  2. public interface ArticleMapper {
  3. List<Article> findAll();
  4. Article findById(Integer id);
  5. void insert(Article article);
  6. void update(Article article);
  7. void delete(Integer id);
  8. }

  1. com.example.demo.service.impl
包下创建一个名为
  1. ArticleServiceImpl.java
的新类,并添加以下内容:
  1. @Service
  2. public class ArticleServiceImpl implements ArticleService {
  3. @Autowired
  4. private ArticleMapper articleMapper;
  5. @Override
  6. public List<Article> findAll() {
  7. return articleMapper.findAll();
  8. }
  9. @Override
  10. public Article findById(Integer id) {
  11. return articleMapper.findById(id);
  12. }
  13. @Override
  14. public void create(Article article) {
  15. articleMapper.insert(article);
  16. }
  17. @Override
  18. public void update(Article article) {
  19. articleMapper.update(article);
  20. }
  21. @Override
  22. public void delete(Integer id) {
  23. articleMapper.delete(id);
  24. }
  25. }

1.3创建ArticleController类

  1. com.example.demo.controller
包下创建一个名为
  1. ArticleController.java
的新类,并添加以下内容:
  1. @RestController
  2. @RequestMapping("/api/article")
  3. public class ArticleController {
  4. @Autowired
  5. private ArticleService articleService;
  6. @GetMapping
  7. public List<Article> list() {
  8. return articleService.findAll();
  9. }
  10. @GetMapping("/{id}")
  11. public Article detail(@PathVariable Integer id) {
  12. return articleService.findById(id);
  13. }
  14. @PostMapping
  15. public Result create(@RequestBody Article article) {
  16. articleService.create(article);
  17. return Result.success("文章发布成功");
  18. }
  19. @PutMapping("/{id}")
  20. public Result update(@PathVariable Integer id, @RequestBody Article article) {
  21. article.setId(id);
  22. articleService.update(article);
  23. return Result.success("文章更新成功");
  24. }
  25. @DeleteMapping("/{id}")
  26. public Result delete(@PathVariable Integer id) {
  27. articleService.delete(id);
  28. return Result.success("文章删除成功");
  29. }
  30. }

至此,我们已经完成了后端的发布、编辑、删除文章功能。

2. 前端Vue3实现

2.1 创建文章列表页面组件

  1. src/views
目录下创建一个名为
  1. ArticleList.vue
的新组件,并添加以下内容:
  1. <template>
  2. <div>
  3. <el-table :data="articles">
  4. <el-table-column prop="id" label="ID" width="80"></el-table-column>
  5. <el-table-column prop="title" label="标题"></el-table-column>
  6. <el-table-column label="操作" width="180">
  7. <template v-slot="{ row }">
  8. <el-button @click="editArticle(row.id)">编辑</el-button>
  9. <el-button type="danger" @click="deleteArticle(row.id)">删除</el-button>
  10. </template>
  11. </el-table-column>
  12. </el-table>
  13. </div>
  14. </template>
  15. <script>
  16. import { ref } from "vue";
  17. import axios from "axios";
  18. export default {
  19. setup() {
  20. const articles = ref([]);
  21. const fetchArticles = async () => {
  22. const response = await axios.get("/api/article");
  23. articles.value = response.data;
  24. };
  25. const editArticle = (id) => {
  26. // 跳转到编辑页面
  27. };
  28. const deleteArticle = async (id) => {
  29. await axios.delete(`/api/article/${id}`);
  30. fetchArticles();
  31. };
  32. fetchArticles();
  33. return { articles, editArticle, deleteArticle };
  34. },
  35. };
  36. </script>

2.2 创建文章发布页面组件

  1. src/views
目录下创建一个名为
  1. CreateArticle.vue
的新组件,并添加以下内容:
  1. <template>
  2. <el-form ref="form" :model="form" label-width="80px">
  3. <el-form-item label="标题" prop="title">
  4. <el-input v-model="form.title"></el-input>
  5. </el-form-item>
  6. <el-form-item label="内容" prop="content">
  7. <el-input type="textarea" v-model="form.content"></el-input>
  8. </el-form-item>
  9. <el-form-item>
  10. <el-button type="primary" @click="submitForm('form')">发布文章</el-button>
  11. </el-form-item>
  12. </el-form>
  13. </template>
  14. <script>
  15. import { reactive } from "vue";
  16. import axios from "axios";
  17. export default {
  18. setup() {
  19. const form = reactive({ title: "", content: "" });
  20. const submitForm = async () => {
  21. try {
  22. await axios.post("/api/article", form);
  23. alert("文章发布成功");
  24. } catch (error) {
  25. alert("文章发布失败");
  26. }
  27. };
  28. return { form, submitForm };
  29. },
  30. };
  31. </script>

2.3 创建文章编辑页面组件

  1. src/views
目录下创建一个名为
  1. EditArticle.vue
的新组件,并添加以下内容:
  1. <template>
  2. <el-form ref="form" :model="form" label-width="80px">
  3. <el-form-item label="标题" prop="title">
  4. <el-input v-model="form.title"></el-input>
  5. </el-form-item>
  6. <el-form-item label="内容" prop="content">
  7. <el-input type="textarea" v-model="form.content"></el-input>
  8. </el-form-item>
  9. <el-form-item>
  10. <el-button type="primary" @click="submitForm">更新文章</el-button>
  11. </el-form-item>
  12. </el-form>
  13. </template>
  14. <script>
  15. import { ref, reactive, onMounted } from "vue";
  16. import axios from "axios";
  17. export default {
  18. props: {
  19. id: {
  20. type: Number,
  21. required: true,
  22. },
  23. },
  24. setup(props) {
  25. const form = reactive({ title: "", content: "" });
  26. const fetchArticle = async () => {
  27. const response = await axios.get(`/api/article/${props.id}`);
  28. form.title = response.data.title;
  29. form.content = response.data.content;
  30. };
  31. const submitForm = async () => {
  32. try {
  33. await axios.put(`/api/article/${props.id}`, form);
  34. alert("文章更新成功");
  35. } catch (error) {
  36. alert("文章更新失败");
  37. }
  38. };
  39. onMounted(fetchArticle);
  40. return { form, submitForm };
  41. },
  42. };
  43. </script>

这段代码定义了一个名为EditArticle.vue的新组件,该组件需要一个名为id的属性。组件加载时,会调用fetchArticle函数获取文章信息并填充到表单中。点击"更新文章"按钮时,会调用submitForm函数,将表单数据发送到后端以更新文章。

以上就是基于SpringBoot和Vue3的博客平台发布、编辑、删除文章功能怎么实现的详细内容,更多关于基于SpringBoot和Vue3的博客平台发布、编辑、删除文章功能怎么实现的资料请关注九品源码其它相关文章!