Authored by qianjun

Update front_questionnaire.md

... ... @@ -71,7 +71,7 @@ or
```
#### code!=200 为非法状态
#### 注意 code!=200 为非法状态
### 3、获取问卷(FrontQuestionnaireController/getById4Questionnaire.do)
... ... @@ -226,12 +226,46 @@ or
"addon": ""
}
]
{
"id": 2,
"uid": 20422456,
"clientType": 1,
"startTime": 1487462400,
"endTime": 1490839162,
"frontAnswers": [
{
"questionIndex": 0,
"answerIndex": 0
},
{
"questionIndex": 1,
"answerIndex": 2
},
{
"questionIndex": 1,
"answerIndex": 4,
"addon": "天猫渠道"
},
{
"questionIndex": 2,
"answerIndex": 0,
"addon": "吴亦凡"
},
{
"questionIndex": 2,
"answerIndex": 0,
"addon": "陈奕迅"
}
]
}
```
#### 注意 用户答案表 如果是多项选择题,会存储多条记录,answer_index分开存储,如果有补充内容同时存储在addon中,如果是填空题,同样存储多条记录,answer_index分开存储,填空题的答案同时存储在addon中 方便后台结果分析统计
#### 响应内容
```json
{
"code": 200,
"data": 1,
"data": true,
"message": "success"
}
```
\ No newline at end of file
... ...