我有一个语义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函数吗?
答案 0 :(得分:1)
简单的任务,不使用onChange进行更改:
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL).client(client)
.addConverterFactory(GsonConverterFactory.create(gson))
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.build();