REST API($.ajax)でRedmineのチケットを更新するときは、レスポンスのdataTypeをJSONにしてはならない
9560 ワード
概要
- 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" );
Author And Source
この問題について(REST API($.ajax)でRedmineのチケットを更新するときは、レスポンスのdataTypeをJSONにしてはならない), 我々は、より多くの情報をここで見つけました https://qiita.com/kota_a/items/9df8738a6aa5285ceeee著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .