//将数据解析成json格式 var data=JSON.parse(responseBody); //获取totalRentPrice值 var totalRentPrice=jsonData.data.totalRentPrice; //设置totalRentPrice成环境变量 pm.environment.set("totalRentPrice", totalRentPrice);…
视图解析,请求Controller返回的视图类型: @Controller @RequestMapping("/test") public class TestController { //正常返回ModelAndView @RequestMapping("/modelAndView") public ModelAndView retModelAndView(){ ModelAndView mv = new ModelAndView("hello"…