需要使用唯一选择器更新Solr Api字段

时间:2017-12-18 09:52:01

标签: node.js reactjs solr axios

我正在使用以下代码。

需要更新状态字段使用唯一键值..但没有任何反应。

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);
});

0 个答案:

没有答案