我正在使用ajax调用,其url需要附件ID。我现在正在使用硬编码的网址,这是网址:AJS.contextPath()+“/ rest / api / latest / attachment / 10415”
jQuery.ajax({
url: AJS.contextPath()+"/rest/api/latest/attachment/10415",
TYPE: "GET",
//dataType: "application/json",
dataType: "text",
success: function(data){
console.log("Success");
},
error: function(data){
console.error("Error with attachments");
},
}).done(function(data){
console.log("Done with greying attachments");
});
所以这只适用于ID为10415的附件。我正在考虑进行2次ajax调用,上面的调用是第二次调用。第一个有一个AJS.contextPath()+“/ rest / api / latest / issue / $ {issueId}的url,它返回上面ajax调用的内容url。
我是ajax的新手,所以我不确定这是否有用。另外,dataType应该是“text”还是“application / json”?
答案 0 :(得分:0)