<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
使用者點選【釋出貼文】按鈕後,頁面出現一個彈窗,此時後面的頁面並沒有重新整理。
點選【釋出貼文】按鈕後,publishBtn 按鈕會執行 index.js
中的 publish()
方法,跳轉到:CONTEXT_PATH + “/discuss/add”;會執行控制器類 DiscussPostController
的 addDiscussPost()
方法。裡面呼叫Service: discussPostService
,該service又呼叫了 discussPostMapper
,通過其對應的 SQL 語句將貼文內容插進 discuss_post
表中。
<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實現非同步釋出貼文詳解的文章就介紹到這了,更多相關SpringBoot AJAX內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45