JS で OOP の概念を実装する方法がよくわかりません。
コンストラクターで完全に宣言されているクラスがあります。
function AjaxList(settings)
{
// all these vars are of dubious necessity... could probably just use `settings` directly
var _jq_choice_selector = settings['choice_selector'];
var _jq_chosen_list = settings['chosen_list'];
var _cb_onRefresh = settings['on_refresh'];
var _url_all_choices = settings['url_choices'];
var _url_chosen = settings['url_chosen'];
var _url_delete_format = settings['url_delete_format'];
var jq_choice_selector_form = _jq_choice_selector.closest("form");
if (DEBUG && jq_choice_selector_form.length != 1)
{
throw("There was an error selecting the form for the choice selector.");
}
function refresh()
{
_updateChoicesSelector();
_updateChosenList();
_cb_onRefresh();
};
AjaxList.prototype.refresh = refresh; // will this be called on all AjaxLists, or just the instance used to call it?
// AjaxList.refresh = refresh; // will this be called on all AjaxLists, or just the instance used to call it?
// ...
}
AjaxList のインスタンスが複数あります。それらの 1 つを呼び出すとrefresh()
、その 1 つのリストだけが更新されます。次の例では:
term_list = AjaxList(settings);
term_list.refresh();
このrefresh()
呼び出しにより、すべての AjaxLists が更新されるようです。これを行う正しい方法は何ですか?
違いがあれば、jQueryを使用しています。