您好,登錄后才能下訂單哦!
本篇內容主要講解“SpringBoot怎么采用AJAX實現異步發布帖子”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot怎么采用AJAX實現異步發布帖子”吧!
Asynchronous JavaScript and XML
異步的 JavaScript 與 XML 不是一門新技術,而是一個新術語
使用 AJAX,網頁能夠將增量更新呈現在頁面上,而不需要刷新整個頁面
雖然 X 代表 XML,但是目前 JSON 的使用比 XML 更加普遍
使用 jQuery 發送AJAX請求
采用AJAX請求,實現發布帖子的功能
用戶點擊【發布帖子】按鈕后,頁面出現一個彈窗,此時后面的頁面并沒有刷新。
點擊【發布帖子】按鈕后,publishBtn 按鈕會執行 index.js
中的 publish()
方法,跳轉到:CONTEXT_PATH + “/discuss/add”;會執行控制器類 DiscussPostController
的 addDiscussPost()
方法。里面調用Service: discussPostService
,該service又調用了 discussPostMapper
,通過其對應的 SQL 語句將帖子內容插進 discuss_post
表中。
工具類:編寫多個(重載)JSONString 相關的方法
數據庫交互:在 xxxmapper.xml 文件中編寫對應的 SQL 語句,并在 Dao 層的接口中聲明 CRUD 方法
核心業務邏輯:在 Service 層中編寫,由該層調用 Dao 層的方法實現對數據層的操作
視圖層:控制器 + 頁面
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.58</version> </dependency>
util/CommunityUtil.java
在用戶登錄之前,不顯示【發布帖子】按鈕;
在用戶登錄之后,才顯示【發布帖子】按鈕,可以進行相關操作。
//得到JSON格式的字符串 //輸入為:編號、提示、業務數據 public static String getJSONString(int code, String msg, Map<String, Object> map){ JSONObject json = new JSONObject(); json.put("code",code); json.put("msg",msg); if (map!=null){ for (String key: map.keySet()) { json.put(key, map.get(key)); } } return json.toJSONString(); } //得到JSON格式的字符串(重載1:無業務數據) public static String getJSONString(int code, String msg){ return getJSONString(code, msg, null); } //得到JSON格式的字符串(重載2:無提示、業務數據) public static String getJSONString(int code){ return getJSONString(code, null, null); }
dao/DiscussPostMapper.java
添加了 insertDiscussPost()
方法,功能為插入帖子
package com.nowcoder.community.dao; import com.nowcoder.community.entity.DiscussPost; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface DiscussPostMapper { List<DiscussPost> selectDiscussPosts(int userId, int offset, int limit); // @Param注解用于給參數取別名 // 如果只有一個參數,并且在<if>里使用,則必須加別名 int selectDiscussPostRows(@Param("userId") int userId); int insertDiscussPost(DiscussPost discussPost); }
mapper/discusspost-mapper.xml
編寫對應的 SQL 語句
<insert id="insertDiscussPost" parameterType="DiscussPost"> insert into discuss_post(<include refid="insertFields"></include>) values (#{userId},#{title},#{content},#{type},#{status},#{createTime},#{commentCount},#{score}) </insert>
service/DiscussPostService.java
編寫 addDiscussPost()
,同時注入過濾器
package com.nowcoder.community.service; import com.nowcoder.community.dao.DiscussPostMapper; import com.nowcoder.community.entity.DiscussPost; import com.nowcoder.community.util.SensitiveFilter; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.web.util.HtmlUtils; import java.util.List; @Service public class DiscussPostService { @Autowired private DiscussPostMapper discussPostMapper; @Autowired private SensitiveFilter sensitiveFilter; public List<DiscussPost> findDiscussPosts(int userId, int offset, int limit) { return discussPostMapper.selectDiscussPosts(userId, offset, limit); } public int findDiscussPostRows(int userId) { return discussPostMapper.selectDiscussPostRows(userId); } public int addDiscussPost(DiscussPost post) { if (post == null) { throw new IllegalArgumentException("參數不能為空!"); } // 轉義HTML標記 post.setTitle(HtmlUtils.htmlEscape(post.getTitle())); post.setContent(HtmlUtils.htmlEscape(post.getContent())); // 過濾敏感詞 post.setTitle(sensitiveFilter.filter(post.getTitle())); post.setContent(sensitiveFilter.filter(post.getContent())); return discussPostMapper.insertDiscussPost(post); } }
package com.nowcoder.mycommunity.controller; import com.nowcoder.mycommunity.entity.DiscussPost; import com.nowcoder.mycommunity.entity.User; import com.nowcoder.mycommunity.service.DiscussPostService; import com.nowcoder.mycommunity.util.CommunityUtil; import com.nowcoder.mycommunity.util.HostHolder; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import java.util.Date; //處理所有與發帖相關的請求 @Controller @RequestMapping("/discuss") public class DiscussPostController { @Autowired private DiscussPostService discussPostService; @Autowired //獲取當前用戶 private HostHolder hostHolder; @RequestMapping(path = "/add", method = RequestMethod.POST) @ResponseBody public String addDiscussPost(String title, String content) { User user = hostHolder.getUser(); if (user == null){ // 403表示沒有權限 return CommunityUtil.getJSONString(403, "你還沒有登錄哦!"); } DiscussPost post = new DiscussPost(); post.setUserId(user.getId()); post.setTitle(title); post.setContent(content); post.setCreateTime(new Date()); discussPostService.addDiscussPost(post); return CommunityUtil.getJSONString(0, "發布成功"); } }
index.js
在 js 文件中編寫【發布按鈕】對應的函數 publish()
$(function(){ $("#publishBtn").click(publish); }); function publish() { $("#publishModal").modal("hide"); // 獲取標題和內容 var title = $("#recipient-name").val(); var content = $("#message-text").val(); // 發送異步請求(POST) $.post( CONTEXT_PATH + "/discuss/add", {"title":title,"content":content}, function(data) { data = $.parseJSON(data); // 在提示框中顯示返回消息 $("#hintBody").text(data.msg); // 顯示提示框 $("#hintModal").modal("show"); // 2秒后,自動隱藏提示框 setTimeout(function(){ $("#hintModal").modal("hide"); // 刷新頁面 if(data.code == 0) { window.location.reload(); } }, 2000); } ); }
到此,相信大家對“SpringBoot怎么采用AJAX實現異步發布帖子”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。