Spring学习笔记 - 第013天

ajax+json

例子: 当当网最新上架 不再先保存好资源,而是放在一个选项上就发出一个ajax请求restful架构的controller得到json数据,根据json数据动态生成html代码,显示书籍

1.restful架构的controller

@RestController
public class ApiController {
    @Autowired
    private BookService bookService;
    
    
    @GetMapping("/book/new/{typeId}")
    public List getNewlyOnlineBookWithType(@PathVariable int typeId) {
        return  bookService.getNewestBook(4, typeId);
    }
}

2.js代码

        

你可能感兴趣的:(Spring学习笔记 - 第013天)