我想使用dynamic query
创建(Select * from <table name> where ..)
angular js, html, javascript
。下拉列表应符合条件('and' , 'or', etc)
e.g. -> select <dropdown> from <dropdown> where <dropdown>
。
我是新手。所以请在适当的例子中解释。
答案 0 :(得分:0)
$.ajax({
type: 'POST',
url: 'DropDownController',
dataType: 'json',
success: function(result) {
$.each(result, function() {
$("#drpDown").append(
$('<option/>', {
value: this,
html: this
})
);
});
}
});
在端点上发生的事情是某个控制器DropDownController
可能是在你使用Spring MVC
的情况下,/DropDownController
类似query to call database
,你可以使用{orm
给你写json
1}}或您使用和返回的任何内容都是binds to the dropdown with id="drpDown"
@Override
public void onStop() {
super.onStop();
myWebView.destroy();
finish();
}
@Override
public void onPause() {
super.onPause();
myWebView.destroy();
finish();
}