我正在使用以下代码。
需要更新状态字段使用唯一键值..但没有任何反应。
var config = {
headers: {
"Content-Type": "application/json",
Authorization: configured
}
}
axios.patch('https://localhost:8983/solr/issue/', {key: 'INC0265740', status: 'open'},
config).then(function(response) {
//var issuesnew = response.data;
console.log(response.data);
})
.catch(function(error) {
logger.error('Tickets Failed Because of' + error);
});