嗨,谢谢你的帮助,英语不是我的第一语言,提前抱歉。 :)
选择选择框时,我收到“未找到结果”的通知,但是当我在开发人员工具栏中查看结果时,我看到我收到了一个完整的JSON。
如何匹配单个值而不是获取整个JSON?
JSON结果:
["Descent: Journeys in the Dark (Second Edition)","Dominion","Ascension","Star wars LCG","Magic: The
Gathering Duel Decks Anthology"]
剧本:
<script type="text/javascript">
$('select').select2({
placeholder: 'Select an item',
ajax: {
url: '{{ path('user_games_json') }}', //url to the json data
dataType: 'json',
delay: 250,
processResults: function (data) {
return {
results: data
};
},
cache: true
}
});
</script>