我正在通过 json 使用 jquery ajax 索引 solr。在 json 名称/值对中,我需要从表单中的 html 元素中获取值。如何在 json 中发送这个值,因为变量名在 solr 而不是 value 中被索引。
function signupcall()
{
var variable=document.getElementById('newemail').value;
$.ajax({
type : "POST",
url : "http://localhost:8080/solr/User/update?commit=true",
data : "{ \"add\": { \"doc\": { \"emailaddr\": \"variable\"}} }",
contentType: "application/json",
dataType : "jsonp"
});
}