plus版表白墙!✿✿ヽ(°▽°)ノ✿
文章目录
- JavaEE & 简单前后端分离小项目 - 表白墙
- 1. body格式约定 - 应用层协议
- 2. 后端处理请求
- 2.1 模板
- 2.2 doGet方法
- 2.3 doPost方法
- 3. 前端制作请求并解析响应
- 3.1 原前端页面的代码
- 3.2 刷新时发送GET请求
- 3.3 点击发送时构造Post请求
- 3.4 再优化
- 4. 测试
在前面的学习中,我们已经制作了表白墙的页面,并且学习了HTTP、Tomcat、Servlet的知识,而这些知识,就相当于一句英语句子的单词或者字母,通过这些,就可以开始做一些小项目了!
- JavaEE & Servlet的API详解_s:103的博客-CSDN博客
- JavaScript实战训练小项目 & WebAPI_s:103的博客-CSDN博客
而我对表白墙的优化就是,服务器不关闭,刷新也不会把之前填的都删除
通过前端代码,并且根据实际上所实现的功能,得出json应该有的键值对:
以此构造后端对象:
class Love {
public String from;
public String to;
public String love;
@Override
public String toString() {
return "Love{" +
"from='" + from + '\'' +
", to='" + to + '\'' +
", love='" + love + '\'' +
'}';
}
}
class Love {
public String from;
public String to;
public String love;
@Override
public String toString() {
return "Love{" +
"from='" + from + '\'' +
", to='" + to + '\'' +
", love='" + love + '\'' +
'}';
}
}
@WebServlet("/love")
public class ShowLove extends HttpServlet {
private ObjectMapper objectMapper = new ObjectMapper();
private List<Love> list = new ArrayList<>();
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
}
}
注意:
- 要引入一些依赖(刷新触发加载)
其他设置跟之前一样,不做讲解
- JavaEE & Servlet的API详解_s:103的博客-CSDN博客
- JavaEE & Tomcat & Servelet第一个helloworld程序_s:103的博客-CSDN博客
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//如果有输入操作互动的操作,在这里refresh是不合理的,因为写着写着就刷新了,体验不好
// 所以在这里设置refresh没用!
//转换为json字符串!
String result = objectMapper.writeValueAsString(list);
resp.setContentType("application/json; charset=utf8");
resp.getWriter().write(result);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Love love = objectMapper.readValue(req.getInputStream(), Love.class);
list.add(love);
//默认返回的就是200 ok的空body报文
}
后端代码就这么多了
- 是不是很简单 ^ v ^
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="pursue.css" />
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.4/jquery.min.js">script>
<title>表白墙title>
head>
<body>
<div class="container">
<div class="container-left">
<div class="card">
<form action="#">
<h1>表白h1>
<div class="row">
谁: <input
type="text"
id="c1"
/>
div>
<div class="row">想对谁:<input type="text" id="c2" />div>
<div class="row">
说: <input
type="text"
id="c3"
/>
div>
<div class="print">
<div class="s">
<input type="button" value="发送" id="go" onclick="send()" />
div>
div>
form>
div>
div>
<div class="container-right">
<div class="article" id="a">
<h1 style="font-size: 50px">墙h1>
div>
div>
div>
<script>
function send() {
var text1 = jQuery("#c1");
var text2 = jQuery("#c2");
var text3 = jQuery("#c3");
if (text1.val().trim() == "") {
alert("请输入是谁!");
text1.focus();
return;
}
if (text2.val().trim() == "") {
alert("请输入想对谁说!");
text2.focus();
return;
}
if (text3.val().trim() == "") {
alert("请输入想说什么!");
text3.focus();
return;
}
var loveWords =
"
"
+
text1.val() +
" 想对 " +
text2.val() +
" 说 “" +
text3.val() +
"”!";
jQuery("#a").append(loveWords);
text1.val("");
text2.val("");
text3.val("");
script>
body>
html>
css代码:
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
height: 100%;
}
body {
background-image: url(海.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
height: 100%;
}
.container {
/* 固定宽度 */
width: 1000px;
margin: 0 auto;
height: 100%;
display: flex;
justify-content: space-between;
}
/* 增加可读性 */
.container .container-left {
height: 100%;
width: 25%;
}
.container .container-right {
height: 100%;
width: 74%;
}
.card {
margin-top: 10px;
height: 245px;
width: 100%;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 25px;
}
.article {
margin-top: 10px;
height: calc(100% - 10px);
width: 100%;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 15px;
padding: 5px 20px;
overflow: auto;
/* 内容溢出,滚动条放入这里 */
}
.article h2 {
color: rgba(251, 114, 153, 0.8);
}
.card h1 {
font-size: 50px;
text-align: center;
margin-top: 15px;
margin-bottom: 15px;
}
.row {
height: 30px;
width: 100%;
display: flex;
justify-content: space-around; /*设置flex的原因就是要用这个*/
align-items: center;
font-size: 15px;
margin: 5px;
font-weight: 900;
}
#c1 {
width: 120px;
height: 19px;
font-size: 12px;
text-indent: 4px;
border-radius: 4px;
font-weight: 900;
color: rgba(251, 114, 153, 0.7);
}
#c2 {
width: 120px;
height: 19px;
font-size: 12px;
text-indent: 4px;
border-radius: 4px;
font-weight: 900;
color: rgba(251, 114, 153, 0.7);
}
#c3 {
width: 120px;
height: 19px;
font-size: 12px;
text-indent: 4px;
font-weight: 900;
border-radius: 4px;
font-weight: 900;
color: rgba(251, 114, 153, 0.7);
}
.print {
display: flex;
justify-content: center;
align-items: center;
}
.s #go {
width: 150px;
height: 25px;
background-color: rgba(0, 0, 0, 0.4);
color: white;
font-weight: 900;
line-height: 25px;
text-align: center;
border-radius: 10px;
border: none;
margin-top: 10px;
transition: all 0.618s;
}
#go:hover {
background-color: rgba(251, 114, 153, 0.7);
}
背景图:
呈现:
目的:
在js标签中的一开始,加入这一段:
用ajax去构造请求:
回调函数success的步骤:
function getLoves() {
jQuery.ajax({
type: "GET",
url: "love",
success: function (body) {
//body就是数组
for (var word of body) {
var result =
"
"
+
word.from +
" 想对 " +
word.to +
" 说 “" +
word.love +
"”!";
jQuery("#a").append(result);
}
},
});
}
getLoves();
function send() {
var text1 = jQuery("#c1");
var text2 = jQuery("#c2");
var text3 = jQuery("#c3");
if (text1.val().trim() == "") {
alert("请输入是谁!");
text1.focus();
return;
}
if (text2.val().trim() == "") {
alert("请输入想对谁说!");
text2.focus();
return;
}
if (text3.val().trim() == "") {
alert("请输入想说什么!");
text3.focus();
return;
}
var loveWords =
"
"
+
text1.val() +
" 想对 " +
text2.val() +
" 说 “" +
text3.val() +
"”!";
jQuery("#a").append(loveWords);
var body = {
from: text1.val(),
to: text2.val(),
love: text3.val(),
};
jQuery.ajax({
type: "POST",
url: "love",
contentType: "application/json; charset=utf8",
data: JSON.stringify(body),
//json的一些方法就在jquery里了
});
text1.val("");
text2.val("");
text3.val("");
}
修改之处:
通过用户输入的三个字符串,构造json对应的对象body
ajax中:
修改1:
右侧墙对应的html元素:
- 由于更改了html源码,因此对应的css代码也要更改
- 理论上这一点可以不加,但是规范点还是要给div加个限制空间
- 这样就可以将滚动条放到这个div中,不会把“墙”字滚没!
按住ctrl + f5强制刷新,避免浏览器缓存导致css改变没有被识别
修改3:
- 提交时更新一次墙
- 修改send方法
注意:
打开html不能在文件管理器双击打开,因为这样就是在本地打开,就会导致ajax的跨域问题!
- 正确的应该是通过这个路径访问:
输入测试:
用连着机器的热点的手机表白:
在浏览器重新输入:
滚动条测试:
文章到此结束!谢谢观看
可以叫我 小马,我可能写的不好或者有错误,但是一起加油鸭!本文源码:showLove · 游离态/马拉圈2023年6月 - 码云 - 开源中国 (gitee.com)