在postman pre-script中发送Post请求

Tin*_*say 4 postman postman-pre-request-script

我正在尝试使用邮递员在预脚本中发送 POST 请求,但收到错误“评估预请求脚本时出现错误:错误:意外标记 '<' at 1:1 ^”。不知道出了什么问题。谁能帮我这个?

pm.sendRequest({
url: 'http://localhost:8001/routes/d6b7a95a-fd91-4f8a-b8f6-10835f30170a',
method: 'PATCH',
headers: {"Content-Type": "application/json"},
body: { 
    mode: 'raw',
    raw:JSON.stringify({
        "protocols":["http","https"],
        "paths":["/target-paymentoriginal"],
        "methods":[]})}  }, 

function (err, response) {  console.log("Updated original route to target-payment"+response.json());  });
Run Code Online (Sandbox Code Playgroud)

Dan*_*ton 9

指定的密钥headers不正确。

它应该是:

header: {"Content-Type": "application/json"}-

您需要s从代码中删除 。