1. 程式人生 > >Postman測試時傳字串到後臺的方式

Postman測試時傳字串到後臺的方式

1 .背景

後臺程式碼:

@PostMapping("/listByPeriod")
    public List<SimMaxMinEntity> listByPeriodMaxMin(@RequestBody String period) {
    	
    	return simMaxMinDao.findByPeriod(period);
    	
    }

2. postman中方式

注意,按照下圖的3個標誌來

在這裡插入圖片描述