Limesurvey 获取问题的组合值
Limesurvey get combo values of a question
当我对 API 执行 export_responses 调用时,我得到了问题和值。
对于组合类型的问题,我得到了所选选项的 ID,但没有描述。
我如何访问这些值的描述?
提前致谢!
API 中的参数 sResponseType 允许您选择是要获取应答代码还是应答文本。
请看https://api.limesurvey.org/classes/remotecontrol_handle.html#method_export_responses
Export token response in a survey.
export_responses_by_token(string
$sSessionKey, integer $iSurveyID, string $sDocumentType, string
$sToken, string $sLanguageCode = null, string $sCompletionStatus =
'all', string $sHeadingType = 'code', string $sResponseType = 'short',
array $aFields = null) : array|string
...
...
sResponseType (optional)'short' or 'long' Optional defaults to 'short'
当我对 API 执行 export_responses 调用时,我得到了问题和值。
对于组合类型的问题,我得到了所选选项的 ID,但没有描述。 我如何访问这些值的描述?
提前致谢!
API 中的参数 sResponseType 允许您选择是要获取应答代码还是应答文本。
请看https://api.limesurvey.org/classes/remotecontrol_handle.html#method_export_responses
Export token response in a survey.
export_responses_by_token(string $sSessionKey, integer $iSurveyID, string $sDocumentType, string $sToken, string $sLanguageCode = null, string $sCompletionStatus = 'all', string $sHeadingType = 'code', string $sResponseType = 'short', array $aFields = null) : array|string
... ...
sResponseType (optional)'short' or 'long' Optional defaults to 'short'