158 lines
4.8 KiB
HTML
158 lines
4.8 KiB
HTML
<section>
|
|
<h2 id="ajax">
|
|
Can Select2 be connected to a remote data source?
|
|
</h2>
|
|
|
|
<p>
|
|
Select2 supports connecting to a remote data source using the <code>ajax</code> option.
|
|
</p>
|
|
|
|
<h3>
|
|
How can I set the initially selected options when using AJAX?
|
|
</h3>
|
|
|
|
<p>
|
|
You can refer to the following Stack Overflow answer if you want to set the initial value for AJAX requests: <a href="http://stackoverflow.com/q/30316586/359284#30328989">Select2 4.0.0 initial value with AJAX</a>
|
|
</p>
|
|
|
|
<h3>
|
|
What should the results returned to Select2 look like?
|
|
</h3>
|
|
|
|
<p>
|
|
When you aren't using custom formatting functions (<code>templateResult</code> and <code>templateSelection</code> or <code>formatResults</code>) the data returned by the data provider or by <code>processResults</code> should be a list of objects. The objects should contain an <code>id</code> and a <code>text</code> property. The text property will be displayed. See <a href="#what-properties-are-required-on-the-objects-passed-in-to-the-ar">What properties are required on the objects passed in to the array?</a>.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
[
|
|
{id: 'id1', text: 'option1'},
|
|
{id: 'id2', text: 'option2'},
|
|
{id: 'id3', text: 'option3'},
|
|
]
|
|
{% endhighlight %}
|
|
|
|
<h3>
|
|
Is there a way to modify the response before passing it back to Select2?
|
|
</h3>
|
|
|
|
<p>
|
|
You can use the <code>ajax.processResults</code> option to modify the data returned from the server before passing it to Select2.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
url: '/example/api',
|
|
processResults: function (data) {
|
|
return {
|
|
results: data.items
|
|
};
|
|
}
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<h3>
|
|
A request is being triggered on every key stroke, can I delay this?
|
|
</h3>
|
|
|
|
<p>
|
|
By default, Select2 will trigger a new AJAX request whenever the user changes their search term. You can set a time limit for debouncing requests using the <code>ajax.delay</code> option.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
url: '/example/api',
|
|
delay: 250
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<p>
|
|
This will tell Select2 to wait 250 milliseconds before sending the request out to your API.
|
|
</p>
|
|
|
|
<h3>
|
|
How do I tell Select2 which URL to get the results from?
|
|
</h3>
|
|
|
|
<p>
|
|
When connecting Select2 to a remote data source, you have the option of using either a single endpoint (a single page which handles all requests) or a dynamic endpoint (one of many pages). You can point Select2 to a single endpoint during initialization by specifying a string for the <code>ajax.url</code> option.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
url: '/path/to/search/endpoint'
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<p>
|
|
If there isn't a single url for your search results, or you need to call a function to determine the url to use, you can specify a function for the <code>ajax.url</code> option, and this will be used instead. The query parameters will be passed in through the <code>params</code> option.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
url: function (params) {
|
|
return '/some/url/' + params.term;
|
|
}
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<h3>
|
|
I want to add more query parameters to the request, where can this be done?
|
|
</h3>
|
|
|
|
<p>
|
|
By default, Select2 will send the query term as well as the pagination data as query parameters in requests. You can override the data that is sent to your API, or change any of the query paramters, by overriding the <code>ajax.data</codE> option.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
data: function (params) {
|
|
var query = {
|
|
search: params.term,
|
|
page: params.page
|
|
}
|
|
|
|
// Query parameters will be ?search=[term]&page=[page]
|
|
return query;
|
|
}
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
|
|
<h3>
|
|
The results that I am seeing never change
|
|
</h3>
|
|
|
|
<p>
|
|
Select2 expects that the results that are returned from the remote endpoint are already filtered ahead of time based on the search term. If your remote endpoint just returns the list of all possible options, you may be interested in using Select2's <a href="examples.html#data-array">support for data arrays</a>.
|
|
</p>
|
|
|
|
<h3>
|
|
Can an AJAX plugin other than <code>jQuery.ajax</code> be used?
|
|
</h3>
|
|
|
|
<p>
|
|
Select2 uses the transport method defined in <code>ajax.transport</code> to send requests to your API. By default, this transport method is <code>jQuery.ajax</code> but this can be changed.
|
|
</p>
|
|
|
|
{% highlight js linenos %}
|
|
$('select').select2({
|
|
ajax: {
|
|
transport: function (params, success, failure) {
|
|
var request = new AjaxRequest(params.url, params);
|
|
request.on('success', success);
|
|
request.on('failure', failure);
|
|
}
|
|
}
|
|
});
|
|
{% endhighlight %}
|
|
</section>
|