语义UI React-用远程内容填充下拉列表

时间:2018-11-01 17:57:06

标签: reactjs semantic-ui semantic-ui-react

我正在尝试实现一个可搜索的下拉列表(使用语义UI React库),该列表由服务器的匹配结果填充而成。向用户显示一个输入框。一旦他们开始输入几个字符,就会向后端宁静的端点发出请求,该端点返回匹配的搜索结果。这些结果在下拉列表中显示为值。

使用简单的语义UI(在https://semantic-ui.com/modules/dropdown.html#match-search-query-on-server进行解释),这非常容易。

但是我如何使用该库的React版本实现这一目标?

我无法从文档(https://react.semantic-ui.com/modules/dropdown/#usage-remote)中找出答案。

有人可以给我提供一个例子吗?

1 个答案:

答案 0 :(得分:1)

我能够将其编码如下:

# Disable feature detection by this undocumented parameter. Check the org.hibernate.engine.jdbc.internal.JdbcServiceImpl.configure method for more details.
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false

# Because detection is disabled you have to set correct dialect by hand.
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQL9Dialect