概要
- jquery(3.5.0)の
$.ajax()
でRedmineのチケットを更新しようとしたら、上手くいかなくて困ったので共有
事象
書いたコード
function updateTicketTitle( ticket_id, new_title ) {
let url = `https://xxxxxx/redmine/issues/${ticket_id}.json?key=0123456789abcdef0123456789abcdef`;
update_data = {
"issue": {
"subject": new_title
}
};
$.ajax({
url: url,
type: "PUT",
contentType: 'application/json',
data: JSON.stringify(update_data),
dataType: 'json'
}).done(function(data, status, xhr) {
console.log( "Success!!" );
}).fail(function(xhr, status, error) {
console.log( "Failed.." );
console.log( {"xhr": xhr, "status": status, "error": error } );
});
}
updateTicketTitle( "16", "New Title" );
実行結果
原因
-
$.ajax()
にdataType: 'json'
を渡していたのが原因- チケットの更新は、サーバからのレスポンスが存在しない
- レスポンスが存在しないのにjsonでparseしようとして失敗していた
- チケットの更新は、サーバからのレスポンスが存在しない
解決方法
-
dataType: 'text'
に変更する
function updateTicketTitle( ticket_id, new_title ) {
let url = `https://xxxxxx/redmine/issues/${ticket_id}.json?key=0123456789abcdef0123456789abcdef`;
update_data = {
"issue": {
"subject": new_title
}
};
$.ajax({
url: url,
type: "PUT",
contentType: 'application/json',
data: JSON.stringify(update_data),
dataType: 'text'
}).done(function(data, status, xhr) {
console.log( "Success!!" );
}).fail(function(xhr, status, error) {
console.log( "Failed.." );
console.log( {"xhr": xhr, "status": status, "error": error } );
});
}
updateTicketTitle( "16", "New Title" );