This is an overview of the most common usage of SearchBar. For more information about the available properties, methods, or events, head over to the complete API documentation for SearchBar.
<SearchBar>
是一个UI组件,提供用户界面,用于输入搜索查询和向搜索提供程序提交请求。
<SearchBar hint="Search hint" :text="searchPhrase" @textChange="onTextChanged" @submit="onSubmit" />
<SearchBar>
使用提供双向数据绑定 v-model
。
<SearchBar v-model="searchQuery" />
名称 | 类型 | 描述 |
---|---|---|
hint | String | 获取或设置输入区域的占位符文本。 |
text | String | 获取或设置搜索查询的值。 |
textFieldBackgroundColor | Color | 获取或设置输入区域的背景颜色。 |
textFieldHintColor | Color | 获取或设置占位符文本的颜色。 |
名称 | 描述 |
---|---|
textChange | 文本更改时发出。 |
submit | 提交搜索输入时发出。 |
clear | 通过输入区域中的 X 按钮清除当前搜索输入时发出。 |
Android | iOS |
---|---|
android.widget.SearchView | UISearchBar |