我正在使用google搜索api在数据库中查找结果。现在,这将返回一个ScoredDocument。我需要使用[search.TextField(name=u'number',value=u'1'), search.TextField(name=u'number', value=u'5')]
检查ScoredDocument的字段,这工作正常。现在有些字段具有相同的名称:
result.fields('number').value
<Switch
checked={this.state.active}
onClick={() => this.handleToggle('active')}
value="active"
inputProps={{ 'aria-label': 'secondary checkbox' }}
/>
handleToggle = (name: string) => {
this.setState({ active: !this.state.active });
};
不起作用,因为有多个名为“ number”的字段。
还有其他方法可以获取这些字段的值吗?