如何使用AJAX创建动态查询

时间:2016-06-22 06:07:11

标签: javascript angularjs html5

我想使用dynamic query创建(Select * from <table name> where ..) angular js, html, javascript。下拉列表应符合条件('and' , 'or', etc) e.g. -> select <dropdown> from <dropdown> where <dropdown>。 我是新手。所以请在适当的例子中解释。

1 个答案:

答案 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(); }