This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
是否可以动态添加 mql_filter 来约束来自 Freebase Suggest 控件的结果?
$(function() {
$("#button").onclick(function() {
// add an mql_filter to #film, a Freebase Suggest control
});
$("#film").suggest({type:'/film/film'});
});
$(function() {
$("#button").onclick(function() {
// add an mql_filter to #film, a Freebase Suggest control
$("film").suggest({type:'/film/film',
mql_filter: ...});
});
$("#film").suggest({type:'/film/film'});
});