我正在尝试实现一个可搜索的下拉列表(使用语义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)中找出答案。
有人可以给我提供一个例子吗?
答案 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