gpt4 book ai didi

angularjs - 从 AngularJS 将文档发布到 SOLR 4

转载 作者:可可西里 更新时间:2023-11-01 15:20:45 25 4
gpt4 key购买 nike


我对此深陷困境。我正在创建一个简单的应用程序,它使用 SOLR 4 作为 NoSQL 数据存储和 AngularJS v1.2.2 作为界面。我已经从命令行加载了一堆文档,AngularJS 使得搜索/查看这些文档变得非常容易。我想允许文档编辑,但无法使 POST 工作。 Chrome 控制台显示 400 错误,网络选项卡显示它在 OPTIONS 方法上失败。

网络 header :
请求网址:http://localhost:8983/solr/mrm_assay/update
请求方式:OPTIONS
状态码:400 错误请求
请求 header
接受:*/*
接受编码:gzip、deflate、sdch
接受语言:en-US,en;q=0.8,es;q=0.6
访问控制请求 header :接受,内容类型
访问控制请求方法:POST
缓存控制:无缓存
连接:保持事件状态
主机:本地主机:8983
来源:http://localhost:63342
用法:无缓存
引用:http://localhost:63342/angular-solr2/app/index.html
用户代理:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36
响应头
访问控制允许凭据:true
Access-Control-Allow-Headers:origin, content-type, cache-control, accept, 选项
访问控制允许方法:GET、POST、DELETE、PUT、HEAD、OPTIONS
访问控制允许来源:http://localhost:63342
访问控制最大年龄:1800
内容类型:应用程序/xml;字符集=UTF-8
传输编码:分块

架构快速概览:
SOLR 和 AngularJS 应用程序都在我的 Mac 上运行。SOLR 使用默认的 Jetty 实例,Angular 应用程序从 WebStorm 的 IDE 在服务器内运行。 CORS 已启用,包括 GET、POST、DELETE、PUT、HEAD、OPTIONS。

更新在以下情况下有效:

  • 使用 SOLR 的仪表板
  • 使用命令行(示例)
    $ curl http://localhost:8983/solr/mrm_assay/update -H 'Content-type:application/json' -d '[ {
    “keep_in_assay”{“设置”:“N”,
    "detected_endog": "N",
    "problems_w_is": "删除 b/c 需要添加后绿洲",
    "onc_std_set": "set1",
    "fraction_id": "7",
    "onclistgene": "UBL3",
    “基因”:“UBL3_IS6”,
    “类群”:“9606”,
    “肽”:“SSNVPADMINLR”,
    "degen_human": "1",
    “基因退化”:“1”,
    "percnt_id": "66.7",
    “uuid”:“6d20eb03-d3ee-4eb2-bc16-27cfaabab989”
    } ]'

我的 Angular Controller 代码如下所示:
assayControllers.controller('AssayUpdateController', ['$scope', '$http',
功能($范围,$http){
$scope.processForm = function(){
console.log($scope.assay);
$http({
方法:'POST',
url:'http://localhost:8983/solr/mrm_assay/update',
数据:$scope.assay,
header :{'Content-Type':'application/json'}
})
.success(函数(数据、状态、标题){
控制台日志(数据。消息);
})
.error(函数(数据、状态、标题、配置){
控制台日志(状态);
});
};
}
]);

数据已成功从表单发送,正如我在控制台上看到的那样(尽管 JSON 对象未打包在数组中,这是 SOLR 似乎期望的……我还尝试将 JSON 格式的数据推送到数组和 POST 但没有运气)

感谢您的帮助 - 即使只是指导我进行故障排除!

最佳答案

关于如何使用 AngularJS v1.2.2 将单个文档更新到 SOLR v4.7 的答案是多部分的。这只在我的本地主机上测试过!

我。在 SOLR 附带的 Jetty 服务器上配置 CORS
solr-4.7.0/example/solr-webapp/webapp/WEB-INF/web.xml

注释: CrossOriginFilter 有一个参数 chainPreflight,默认设置为 true。这需要设置为false。 这是 CORS 将 POST 而不是 OPTIONS 转发到 SOLR 的关键。。另外,顺序很重要!

<filter>
<filter-name>cross-origin</filter-name>
<filter-class>org.eclipse.jetty.servlets.CrossOriginFilter</filter-class>
<init-param>
<param-name>allowedOrigins</param-name>
<param-value>http://localhost*</param-value>
</init-param>
<init-param>
<param-name>allowedMethods</param-name>
<param-value>GET,POST,DELETE,PUT,HEAD,OPTIONS</param-value>
</init-param>
<init-param>
<param-name>allowedHeaders</param-name>
<param-value>origin, content-type, cache-control, accept, options, authorization, x-requested-with</param-value>
</init-param>
<init-param>
<param-name>supportsCredentials</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>chainPreflight</param-name>
<param-value>false</param-value>
</init-param>
</filter>

<filter-mapping>
<filter-name>cross-origin</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

二。 SOLR 需要数组格式的有效负载,因此您需要将 Angular 对象插入其中。基本上,$scope.data 变成了 [$scope.data]

assayControllers.controller('AssayUpdateController', ['$scope', '$http', '$location',
function($scope, $http, $location){
$scope.processForm = function(){
$http.post("http://localhost:8983/solr/mrm_assay/update?commit=true", [$scope.assay])
.success(function(data, status, headers){
console.log(data.message);
$location.path("/assays")
})
.error(function(data, status, headers, config){
console.log(status);
});
};
}
]);

三。 SOLR 文档包含可能导致 POST 出现“冲突”错误的version 字段。这是由于我无法追踪的缓存问题(curl 显示当前值但浏览器有旧值;即使在强制刷新时也是如此)。无论如何,这对 SOLR 比我更有用,所以最好的办法是一开始就不要将它返回给客户。我不认为字段排除是一个选项,所以我将我想在 solrconfig.xml 中返回的所有字段列入白名单

 <!-- A request handler that returns indented JSON by default -->
<requestHandler name="/query" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
<str name="wt">json</str>
<str name="indent">true</str>
<str name="df">text</str>
<str name="fl">uuid,keep_in_assay,detected_endog,problems_w_is,onc_std_set,fraction_id,detected_by_orbi_experiments,onclistgene,geneid,taxonid,peptide,\
degen_human,degen_mouse,gene_degeneracy,department,protein_ac,pepid,protid,percnt_id,peptide_ordered</str>

现在这个应用程序就像一个魅力!

关于angularjs - 从 AngularJS 将文档发布到 SOLR 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22579367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com