下面是我的代码。我不认为有任何问题。
我怎么能愚弄 codacy?如果我不能使用obj[key]
,那这到底是什么东西?我没有办法避免[]
。
handleClick = (e, titleProps) => {
const { index } = titleProps
const newVal = this.state.activeIndexObj[index]? false: true
let activeIndexObj = {...this.state.activeIndexObj}
activeIndexObj[index] = newVal
// Generic Object Injection Sink (security/detect-object-injection)