在编写Web应用程序以从我们的CRM应用程序中获取JSON数据时,我遇到了一些问题。
我想要做的是使用Twitter's typeahead.js插件从我们的CRM应用程序远程获取客户信息。 Microsoft确实提供了一种使用JSON数据进行通信的方法。他们称之为OData。但是,这看起来不像典型的JSON响应。这就是我无法使用它设置typeahead插件的原因。
当我向API URL发送GET请求时,我收到以下响应:
{
"d":{
"results":[
{
"__metadata":{
"uri":"http://*****/*****/XRMServices/2011/OrganizationData.svc/AccountSet(guid'de227fde-fb40-dd11-b5d3-001cc46325e5')",
"type":"Microsoft.Crm.Sdk.Data.Services.Account"
},
"Name":"Some company as",
"AccountId":"de227fde-fb40-dd11-b5d3-001cc46325e5"
},
{
"__metadata":{
"uri":"http://*****/*****/XRMServices/2011/OrganizationData.svc/AccountSet(guid'5dc70a19-e91e-e311-9ad7-005056ac083a')",
"type":"Microsoft.Crm.Sdk.Data.Services.Account"
},
"Name":"Compnay AS",
"AccountId":"5dc70a19-e91e-e311-9ad7-005056ac083a"
}
]
}
}
以下是问题: 如何设置Twitter的预先输入插件以使用此数据结构?
我希望在显示建议时来自JSON响应的Name
值。我想在选择建议时获取相关的AccountId
值。
这是我到目前为止在我的代码中得到的结果:
HTML:
<!DOCTYPE html>
<html lang="no">
<head>
<title>Company :: Time Registrering</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/global.css" />
</head>
<body>
<form action="" method="GET" autocomplete="off">
<input type="text" name="account" id="account" placeholder="Kunde...">
</form>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/typeahead.js"></script>
<script type="text/javascript" src="js/global.js"></script>
</body>
</html>
JavaScript:(js / global.js)
$(document).ready(function () {
var accounts = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('Name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: "http://*****/*****/xrmservices/2011/OrganizationData.svc/AccountSet?$select=Name,AccountId&$filter=substringof('%QUERY',Name) and StateCode/Value eq 0"
});
accounts.initialize();
$("#account").typeahead({
hint: true,
highlight: true,
minLength: 2
}, {
name: 'account',
displayKey: 'd.results[0].Name',
source: accounts.ttAdapter()
});
});
但是:我的代码不起作用。我得到的只是一个文字说&#34; undefined&#34;在输入字段下。我怀疑我的datumTokenizer
或displayKey
引用不正确。我不完全理解datumTokinizer
。所以,如果有人能够启发我,我会感激不尽:)
答案 0 :(得分:1)
你应该使用过滤器并使用jQuery.map
html
<input type="text" name="account" id="account" placeholder="Kunde..." />
JS
$(document).ready(function () {
var accounts = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('Name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
url : "https://gist.githubusercontent.com/anonymous/80a75d841a055ea0e480/raw/4eb8d4f1833d8a15cae1830097c090f5d581bd12/gistfile1.txt",
filter: function(jsonValue) {
return $.map(jsonValue.d.results, function (result) {
return {
value: result.Name
};
});
}
}
});
accounts.initialize();
$("#account").typeahead({
hint: false,
highlight: true,
minLength: 2
}, {
source: accounts.ttAdapter()
});
});
答案 1 :(得分:1)
我找到了问题的解决方案。我注意到我可以在Bloodhound对象中使用过滤器函数并使用$ .map生成一个数组,这样Bloodhound引擎可以像预期的那样查找它。
这就是我的JavaScript代码现在的样子(HTML从问题中保持不变):
$(document).ready(function () {
var accounts = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('Name'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
url: "http://****/****/xrmservices/2011/OrganizationData.svc/AccountSet?$select=Name,AccountId&$filter=substringof('%QUERY',Name) and StateCode/Value eq 0",
filter: function (accounts) {
return $.map(accounts.d.results, function (account) {
return {
Name: account.Name,
AccountId: account.AccountId
};
});
}
}
});
accounts.initialize();
$("#account").typeahead({
hint: true,
highlight: true,
minLength: 2
}, {
name: 'account',
displayKey: 'Name',
source: accounts.ttAdapter()
});
$("#account").on('typeahead:selected', function(dom, selectedItem) {
console.log(selectedItem.AccountId);
});
});
希望这会帮助其他人做与我相同的事情:)