ScoredDocument如何返回同名字段

时间:2019-06-05 13:30:05

标签: python google-app-engine google-search-api

我正在使用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”的字段。 还有其他方法可以获取这些字段的值吗?

0 个答案:

没有答案