栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

vue 静态html 请求后台接口(springboot)

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

vue 静态html 请求后台接口(springboot)

vue html


   计算属性-vs-侦听属性 

   
  {{ firstName }}
  
  表格


  

  • {{ item.message }}
    {{item.id}} {{item.userId}} {{item.userName}} {{item.passWord}} {{item.message}} {{item.createTime}}
  • springboot api 接口

    package com.example.demo.controller;
    
    
    import com.alibaba.fastjson.JSON;
    import com.example.demo.common.annotations.PassToken;
    import com.example.demo.common.annotations.UseToken;
    import com.example.demo.common.result.ApiResult;
    import com.example.demo.domin.TbUser;
    import com.example.demo.request.dto.LoginDto;
    import com.example.demo.request.dto.UserAddDto;
    import com.example.demo.service.UserService;
    import com.example.demo.utils.*;
    import lombok.extern.slf4j.Slf4j;
    import org.redisson.api.RBucket;
    import org.redisson.api.RedissonClient;
    import org.springframework.beans.BeanUtils;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.*;
    
    import java.math.BigDecimal;
    import java.util.List;
    
    @CrossOrigin
    @Slf4j
    @RestController
    @RequestMapping("/api")
    public class TestController {
    
        @Autowired
        private UserService userService;
    
    
        @GetMapping("/1")
        public ApiResult getAllUser(@RequestParam("id") String id) {
            List users = userService.selectAllUser();
            return ApiResult.SUCCESS(users);
        }
    
    
      
    
    }
    
    
    
     
    

    注意api接口需要使用 注解 @CrossOrigin,实现跨域。

    转载请注明:文章转载自 www.mshxw.com
    我们一直用心在做
    关于我们 文章归档 网站地图 联系我们

    版权所有 (c)2021-2022 MSHXW.COM

    ICP备案号:晋ICP备2021003244-6号