每当我在下拉列表中选择任何其他选项时,我仍然会得到第一个值为'?'而不是我选择的任何其他。
FLOW = OAuth2WebServerFlow(
client_id=client id,
client_secret=secret,
scope=scope,
user_agent=user_agent,redirect_uri=redirect_uri)
auth_uri = FLOW.step1_get_authorize_url()
credentials=FLOW.step2_exchange(code)
people_service = apiclient.discovery.build('people', 'v1',credentials=credentials)
connections = people_service.people().connections().list(resourceName='people/me').execute()
我错过了什么?
答案 0 :(得分:0)
我通过将Id的值移动到第一个选择标记
来解决它答案 1 :(得分:0)
我最好的猜测是,无论DOM元素id
role
option
,您都可以获得价值。在这种情况下,您已经定义了始终拥有id
role
的{{1}}。