jQuery REST PUT请求在我的代码中不起作用?

时间:2018-09-26 14:28:50

标签: javascript jquery rest jira

我只想用Jira中的jQuery发出PUT请求。 我之前曾使用SoapUI对其进行过尝试,并且可以正常工作,但是在我的JS文件中却无法正常工作……它总是给我返回错误(在我的情况下警告为“ no”)。

这是我的代码:

var issueKey = this.JIRA.Issue.getIssueKey();
var username = "admin";
var password = "admin";
var encodedLoginData = btoa(username + ":" + password);

AJS.$.ajax({
    type: 'PUT',
    contentType: 'application/json',
    url: '/jira/rest/api/2/issue/' + issueKey,
    dataType: 'json',
    async: false,
    headers: { 'Authorization': 'Basic ' + encodedLoginData },
    data: JSON.stringify('{"update":{"timetracking":[{"edit":{"originalEstimate":"4m","remainingEstimate":"3m"}}]}}'),
    success: function(response){ alert("yes"); },
    error: function(error){ alert("no"); }
});

如上所述,JSON数据短语可在SoapUI中使用,还可以用于登录信息和base64加密。没错。 但是我找不到我的错...有什么想法吗?

编辑:

PUT http://localhost:2990/jira/rest/api/2/issue/TEST-3 400
XMLHttpRequest.send @   batch.js?devtoolbar=…logged-in=true:5461
send    @   batch.js?locale=en-US:197
ajax    @   batch.js?locale=en-US:191
calculate   @   batch.js?devtoolbar=…logged-in=true:5620
prepareCalculation  @   batch.js?devtoolbar=…logged-in=true:5620
(anonymous) @   batch.js?devtoolbar=…logged-in=true:5620
dispatch    @   batch.js?locale=en-US:104
h   @   batch.js?locale=en-US:96
trigger @   batch.js?locale=en-US:101
simulate    @   batch.js?locale=en-US:108
e   @   batch.js?locale=en-US:114

3 个答案:

答案 0 :(得分:0)

如果这是IIS服务器,则可能需要禁用WebDAV,因为它会捕获所有PUT请求。

答案 1 :(得分:0)

我认为您的问题是JSON.stringify的参数不应为String。尝试将其保存到变量中,然后对其进行JSON.stringify。

考虑JSON.stringify的结果。例如:

 JSON.stringify("{}"); //""{}""

 JSON.stringify({}); //"{}"

现在您的代码应如下所示:

var issueKey = this.JIRA.Issue.getIssueKey();
var username = "admin";
var password = "admin";
var encodedLoginData = btoa(username + ":" + password);
var dataObject = {"update":{"timetracking":[{"edit":{"originalEstimate":"4m","remainingEstimate":"3m"}}]}};

AJS.$.ajax({
    type: 'PUT',
    contentType: 'application/json',
    url: '/jira/rest/api/2/issue/' + issueKey,
    dataType: 'json',
    async: false,
    headers: { 'Authorization': 'Basic ' + encodedLoginData },
    data: JSON.stringify(dataObject),
    success: function(response){ alert("yes"); },
    error: function(error){ alert("no"); }
});

答案 2 :(得分:0)

可能是您的错误是您要对字符串进行字符串化

data: JSON.stringify('{update...}')

如今,您不需要jQuery在浏览器中执行HTTP。所有现代浏览器都内置有Fetch API

const issueKey = this.JIRA.Issue.getIssueKey();
const username = "admin";
const password = "admin";
const encodedLoginData = btoa(username + ":" + password);

const body = {
  update: {
    timetracking: [{
      edit: {
        originalEstimate: "4m"
        remainingEstimate: "3m"
      }
    }]
  }
}

fetch(`/jira/rest/api/2/issue/${issueKey}`, {
  method: 'PUT',
  body: JSON.stringify(body),
  headers: {
    'Authorization': 'Basic ' + encodedLoginData
    'Content-Type': 'application/json',
  },
})
  .then(response => alert('yes'))
  .catch(error => alert('no'));