指向网址的语义UI反应下拉链接

时间:2018-11-17 20:14:13

标签: dropdown semantic-ui-react

我有一个语义UI React Dropdown组件,带有类似的选项

const options = [
  { key: 'user', text: 'Account', icon: 'user' },
  { key: 'settings', text: 'Settings', icon: 'settings' },
  { key: 'sign-out', text: 'Sign Out', icon: 'sign out' },
]

我想将上述每个项目链接到url,例如'/ account','/ settings'和'/ logout'

我不确定如何触发此类操作。我没有看到任何href或道具。我猜我将不得不编写onClick或onChange函数吗?

1 个答案:

答案 0 :(得分:1)

简单的任务,不使用onChange进行更改:

Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(BASE_URL).client(client)
                .addConverterFactory(GsonConverterFactory.create(gson))
                .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
                .build();