SpringBoot采用AJAX實現異步發佈帖子詳解

1. AJAX

  • Asynchronous JavaScript and XML
  • 異步的 JavaScript 與 XML 不是一門新技術,而是一個新術語
  • 使用 AJAX,網頁能夠將增量更新呈現在頁面上,而不需要刷新整個頁面
  • 雖然 X 代表 XML,但是目前 JSON 的使用比 XML 更加普遍

2. 功能描述

  • 使用 jQuery 發送AJAX請求
  • 采用AJAX請求,實現發佈帖子的功能

用戶點擊【發佈帖子】按鈕後,頁面出現一個彈窗,此時後面的頁面並沒有刷新。

點擊【發佈帖子】按鈕後,publishBtn 按鈕會執行 index.js 中的 publish() 方法,跳轉到:CONTEXT_PATH + “/discuss/add”;會執行控制器類 DiscussPostControlleraddDiscussPost()方法。裡面調用Service: discussPostService,該service又調用瞭 discussPostMapper,通過其對應的 SQL 語句將帖子內容插進 discuss_post 表中。

3. 開發流程

  • 工具類:編寫多個(重載)JSONString 相關的方法
  • 數據庫交互:在 xxxmapper.xml 文件中編寫對應的 SQL 語句,並在 Dao 層的接口中聲明 CRUD 方法
  • 核心業務邏輯:在 Service 層中編寫,由該層調用 Dao 層的方法實現對數據層的操作
  • 視圖層:控制器 + 頁面

4. 引入AJAX依賴

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.58</version>
</dependency>

5. Util

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);
}

6. Mapper

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>

7. Service

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);
    }
}

8. Controller

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, "發佈成功");
    }
}

9. JavaScript

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實現異步發佈帖子詳解的文章就介紹到這瞭,更多相關SpringBoot AJAX內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: