You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.5 KiB
83 lines
1.5 KiB
7 years ago
|
|
||
|
<cn>
|
||
|
#### 搜索框
|
||
|
自动补全和远程数据结合。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Search Box
|
||
|
Autocomplete with remote ajax data.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-select
|
||
|
mode="combobox"
|
||
|
:value="value"
|
||
|
placeholder="input search text"
|
||
|
style="width: 200px"
|
||
|
:defaultActiveFirstOption="false"
|
||
|
:showArrow="false"
|
||
|
:filterOption="false"
|
||
|
@change="handleChange"
|
||
|
>
|
||
|
<a-select-option v-for="d in data" :key="d.value">{{d.text}}</a-select-option>
|
||
|
</a-select>
|
||
|
</template>
|
||
|
<script>
|
||
|
import jsonp from 'fetch-jsonp';
|
||
|
import querystring from 'querystring';
|
||
|
|
||
|
let timeout;
|
||
|
let currentValue;
|
||
|
|
||
|
function fetch(value, callback) {
|
||
|
if (timeout) {
|
||
|
clearTimeout(timeout);
|
||
|
timeout = null;
|
||
|
}
|
||
|
currentValue = value;
|
||
|
|
||
|
function fake() {
|
||
|
const str = querystring.encode({
|
||
|
code: 'utf-8',
|
||
|
q: value,
|
||
|
});
|
||
|
jsonp(`https://suggest.taobao.com/sug?${str}`)
|
||
|
.then(response => response.json())
|
||
|
.then((d) => {
|
||
|
if (currentValue === value) {
|
||
|
const result = d.result;
|
||
|
const data = [];
|
||
|
result.forEach((r) => {
|
||
|
data.push({
|
||
|
value: r[0],
|
||
|
text: r[0],
|
||
|
});
|
||
|
});
|
||
|
callback(data);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
timeout = setTimeout(fake, 300);
|
||
|
}
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
data: [],
|
||
|
value: '',
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
handleChange (value) {
|
||
|
console.log(value)
|
||
|
this.value = value
|
||
|
fetch(value, data => this.data = data);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
```
|
||
|
|