当前位置:   article > 正文

axios-商品列表_axios通过弹窗修改商品列表

axios通过弹窗修改商品列表

1.步骤:

1.商品列表步骤:

  1. 在首页中添加商品列表超链接 请求地址为/list.html
  2. 创建list.html页面, 页面中添加表格, 并且让表格和arr数组进行绑定, 在页面中添加created方法,在方法中向/select地址发出异步请求获取所有商品的数据, 把得到的数据直接赋值给arr数组, 由于页面内容和数组进行了绑定所以页面会自动显示出查询到的数据
  3. 在ProductController里面创建select方法处理/select请求, 方法中调用mapper的select方法 返回值为List集合里面装着Product对象, 把得到的集合直接响应给客户端,SpringMVC框架当发现响应的内容为自定义对象或集合时 会先转成JSON格式的字符串,然后通过网络传输给客户端,而客户端当发现传递过来的是JSON格式的字符串时Axios框架会自动将JSON格式字符串转成数组或JS对象
  4. 实现mapper里面的select方法

2.删除商品步骤:

  1. 在list.html页面中添加一列 每一行商品信息的后面加上删除超链接 废掉超链接的跳转功能,给超链接添加点击事件, 点击时调用del 方法 把需要删除的商品id传递过去
  2. 在del方法中发出异步的get请求 请求地址为/delete?id=xxx 服务器响应后 刷新页面
  3. 在ProductController中创建delete方法处理/delete请求, 方法中调用mapper的deleteById方法把接收到的id传递过去 
  4. 实现mapper里面的deleteById方法

3.修改商品步骤:

  1. 在list.html页面中 删除按钮的前面添加修改超链接, 请求地址为/update.html?id=xxx 
  2. 创建update.html页面, 在页面中准备4个文本框和一个按钮, 让文本框和product对象进行双向绑定, 在页面中添加created方法,实现进入页面后立即向/selectById?id=xxx地址发出请求 请求到的数据为自定义的商品对象(JS对象) 把对象赋值给Vue中和页面进行双向绑定的对象,页面会自动发生改变
  3. 在ProductController中添加selectById方法处理/selectById请求, 接收传递过来的id, 然后调用mapper中的selectById方法 返回值为Product对象 把对象直接响应给客户端 
  4. 实现mapper里面的selectById方法 
  5. 在update.html页面中,给修改按钮添加点击事件, 点击后调用update方法
  6. 实现update方法在方法中向/update地址发出异步post请求 把双向绑定的product对象传递给服务器
  7. 在ProductController里面添加update方法处理/update请求, 调用mapper的update方法把接收到的product对象传递过去 
  8. 实现mapper里面的update方法

2.新建首页index.html

在 resources 目录下 static 中 新建

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>商品管理系统(异步版)</h1>
  9. <a href="/list.html">商品列表</a>
  10. </body>
  11. </html>

3.新建商品列表list.html

在 resources 目录下 static 中 新建

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <div>
  9. <table border="1">
  10. <caption>商品列表</caption>
  11. <tr>
  12. <th>id</th>
  13. <th>标题</th>
  14. <th>价格</th>
  15. <th>库存</th>
  16. <th>操作</th>
  17. </tr>
  18. <tr v-for="p in arr">
  19. <td>{{p.id}}</td>
  20. <td>{{p.title}}</td>
  21. <td>{{p.price}}</td>
  22. <td>{{p.num}}</td>
  23. <!--javascript:void(0) 废掉超链接的跳转功能-->
  24. <!--需要跳转的话就不废掉超链接-->
  25. <!--属性里面出现变量 必须使用属性绑定,也就是再属性前面加:
  26. 加完:后属性的值就变成javaript代码了-->
  27. <td>
  28. <a :href="'/update.html?id='+p.id" >修改</a>
  29. <a href="javascript:void(0)" @click="del(p.id)">删除</a>
  30. </td>
  31. </tr>
  32. </table>
  33. </div>
  34. <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.21.1/axios.min.js"></script>
  35. <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
  36. <script>
  37. let v = new Vue({
  38. el:"body>div",
  39. data:{
  40. arr:[]
  41. },
  42. methods:{
  43. del(id){
  44. if(confirm("您确认删除此商品吗?")){
  45. axios.get("/delete?id="+ id).then(function (response) {
  46. alert("删除成功!")
  47. location.reload();//刷新页面,删除后的表格会有空的位置,需要刷新
  48. })
  49. }
  50. }
  51. },
  52. created:function(){
  53. //此方法是vue对象的一个生命周期方法,创建vue对象时,此方法会自动调用,
  54. //通常情况下把刚刚进入页面需要做的事情,写在此方法中
  55. //发出异步请求获取数据
  56. axios.get("/select").then(function (response) {
  57. //服务器响应的数据为装着多个商品信息的数组
  58. v.arr = response.data;
  59. })
  60. }
  61. })
  62. </script>
  63. </body>
  64. </html>

4.新建update.html

在 resources 目录下 static 中 新建

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <div>
  9. <h1>修改商品页面</h1>
  10. <!--只读 readonly-->
  11. <input type="text" v-model="p.id" placeholder="id" readonly>
  12. <input type="text" v-model="p.title" placeholder="title">
  13. <input type="text" v-model="p.price" placeholder="price">
  14. <input type="text" v-model="p.num" placeholder="num">
  15. <input type="button" value="修改" @click="update()">
  16. </div>
  17. <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.21.1/axios.min.js"></script>
  18. <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
  19. <script>
  20. let v = new Vue({
  21. el:"body>div",
  22. data:{
  23. p:{id:"",title:"",price:"",num:""}
  24. },
  25. methods:{
  26. update(){
  27. axios.post("/update",v.p).then(function (response) {
  28. alert("修改完成");
  29. location.href="/list.html";//回到列表页面
  30. })
  31. }
  32. },
  33. created:function () {
  34. //通过修改商品的id查询商品的所有信息
  35. //location.search = '?id=5'
  36. axios.get("/selectById"+location.search).then(function (response) {
  37. //把通过id查询到的商品对象复制给vue里面的变量,页面会自动发生改变
  38. v.p=response.data;
  39. })
  40. }
  41. })
  42. </script>
  43. </body>
  44. </html>

5.新建Product实体类

在entity包下新建

  1. package cn.detu.boot08.entity;
  2. public class Product {
  3. private Integer id;
  4. private String title;
  5. private Double price;
  6. private Integer num;
  7. @Override
  8. public String toString() {
  9. return "Product{" +
  10. "id=" + id +
  11. ", title='" + title + '\'' +
  12. ", price=" + price +
  13. ", num=" + num +
  14. '}';
  15. }
  16. public Integer getId() {
  17. return id;
  18. }
  19. public void setId(Integer id) {
  20. this.id = id;
  21. }
  22. public String getTitle() {
  23. return title;
  24. }
  25. public void setTitle(String title) {
  26. this.title = title;
  27. }
  28. public Double getPrice() {
  29. return price;
  30. }
  31. public void setPrice(Double price) {
  32. this.price = price;
  33. }
  34. public Integer getNum() {
  35. return num;
  36. }
  37. public void setNum(Integer num) {
  38. this.num = num;
  39. }
  40. }

6.新建ProductController

在controller包下新建

  1. package cn.detu.boot08.controller;
  2. import cn.detu.boot08.entity.Product;
  3. import cn.detu.boot08.mapper.ProductMapper;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.RequestBody;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import java.util.List;
  9. @RestController
  10. public class ProductController {
  11. @Autowired(required = false)
  12. ProductMapper mapper;
  13. @RequestMapping("/select")
  14. public List<Product> select(){
  15. //把查询到的list集合直接响应给客户端
  16. return mapper.select();
  17. }
  18. @RequestMapping("delete")
  19. public void delete(int id){
  20. System.out.println("id = " + id);
  21. mapper.deleteById(id);
  22. }
  23. @RequestMapping("/update")
  24. public void update(@RequestBody Product product){
  25. mapper.update(product);
  26. }
  27. @RequestMapping("/selectById")
  28. public Product selectById(int id){
  29. System.out.println("id = " + id);
  30. return mapper.selectById(id);
  31. }

7.新建ProductMapper

在mapper包下新建

  1. package cn.detu.boot08.mapper;
  2. import cn.detu.boot08.entity.Product;
  3. import org.apache.ibatis.annotations.*;
  4. import java.util.List;
  5. @Mapper
  6. public interface ProductMapper {
  7. @Insert("insert into product values(null,#{title},#{price},#{num})")
  8. void insert(Product product);
  9. @Select("select * from product")
  10. List<Product> select();
  11. @Delete("delete from product where id = #{id}")
  12. void deleteById(int id);
  13. @Select("select * from product where id = #{id}")
  14. Product selectById(int id);
  15. @Update("update product set title=#{title},price=#{price},num=#{num} where id = #{id}")
  16. void update(Product product);
  17. }

8.页面效果

商品列表

修改商品页面

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/247298
推荐阅读
相关标签
  

闽ICP备14008679号