solr支持jsonp

前端之家收集整理的这篇文章主要介绍了solr支持jsonp前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

解决方法这里写链接内容

$.ajax({
  'url': 'http://yoursolrserver.com/solr/select','data': {'wt':'json','q':'your search goes here'},'success': function(data) { /* process e.g. data.response.docs... */ },'dataType': 'jsonp','jsonp': 'json.wrf'
});

不知道为什么这样写。 特此记录。

原文链接:https://www.f2er.com/json/289046.html

猜你在找的Json相关文章