真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何調(diào)用postman的函數(shù)格式化

本文小編為大家詳細介紹“如何調(diào)用postman的函數(shù)格式化”,內(nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“如何調(diào)用postman的函數(shù)格式化”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習新知識吧。

成都創(chuàng)新互聯(lián)為客戶提供專業(yè)的網(wǎng)站建設(shè)、做網(wǎng)站、程序、域名、空間一條龍服務(wù),提供基于WEB的系統(tǒng)開發(fā). 服務(wù)項目涵蓋了網(wǎng)頁設(shè)計、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、移動網(wǎng)站建設(shè)等網(wǎng)站方面業(yè)務(wù)。

方法一:升級版本格式化

1、升級到version 6.7.4版本

2、點擊Beautify即可格式化Body里面的JSON

方法二:調(diào)用postman的函數(shù)格式化

package com.java.example.demo.postman;

import com.alibaba.fastjson.JSONObject;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import java.util.HashMap;
import java.util.Map;

/**
 * postman中常量及函數(shù)的使用
 *
 * 場景:
 * secondFunction這個方法需要依賴 firstFunction方法 執(zhí)行的結(jié)果
 * 使用一個postman請求解決
 */
@RestController
public class Constant {

    @GetMapping("/first")
    @ResponseBody
    public ResponseEntity firstFunction(@RequestParam String param){
return res(param + "-init");
}

    @GetMapping("/second")
    @ResponseBody
    public ResponseEntity secondFunction(@RequestParam String param){
return res("加工后的隨機數(shù):" + param);
}

    private static ResponseEntity res(Object object){
        Map map = new HashMap<>();
        map.put("res",object);
return jsonResult(JSONObject.toJSONString(map));
}

    public static ResponseEntity jsonResult(String result) {
        HttpHeaders resHeaders = new HttpHeaders();
        resHeaders.set("Content-Type", "application/json;charset=UTF-8");
return new ResponseEntity(result, resHeaders, HttpStatus.OK);
}
}

讀到這里,這篇“如何調(diào)用postman的函數(shù)格式化”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站名稱:如何調(diào)用postman的函數(shù)格式化
標題鏈接:http://weahome.cn/article/jschdh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部