URL-felter
From LimeSurvey Manual
Introduktion
URL-feltparametre kan bruges i feltet:
- End URL feltet i undersøgelsen (se undersøgelsens tekstelementer)
- URL-felt for kvotereglen (læs mere om undersøgelseskvoter her)
- Start URL felt i undersøgelsen (se survey text elements).
Slut URL felt
I slutningen af en undersøgelse, eller når en kvote får en undersøgelse til at afslutte, er der mulighed for at angive en afsluttende URL. Denne URL præsenteres for den deltager, der har afsluttet undersøgelsen på slutsiden, eller du kan valgfrit indstille deltageren til automatisk at blive omdirigeret til den respektive URL. Dette kan gøres ved at udfylde indstillingen End URL fra panelet Survey text elements og ved at aktivere den automatiske indlæsning af slut-URL'en fra panelet Presentation, når en undersøgelse er gennemført .
Men LimeSurvey giver mulighed for at bruge URL-felter på mange andre måder, hvilket igen giver dig mulighed for at forbedre funktionaliteten af din undersøgelse.
Grundlæggende felter
Du kan bruge {SAVEDID}, {TOKEN}, {SID} og {LANG} i slutwebadressen:!N !*SAVEDID er det id, der er tildelt denne særlige indsendelse;
- TOKEN er det token, der blev brugt til at deltage i undersøgelsen;
- SID er undersøgelsens ID;
- LANG er sprogkoden.
For eksempel:
https://www.limesurvey.org/test.php?var1={SAVEDID}&var2={TOKEN}&var3={SID}&lang={LANG}
Svarfelter
Du kan også bruge {INSERTANS:SGQA} eller ExpressionScript-variabler. Dette URL-felt giver dig mulighed for at tilføje svaret på et specifikt spørgsmål i undersøgelsen i slut-URL'en. Dette kan være nyttigt til at sende et svar til et eksternt script (dvs. en e-mailadresse indsamlet under undersøgelsen).
For eksempel:
https://www.limesurvey.org/test.php?email={EMAILADDRESS}
It is important to add "newtest/y" to the URL to force a new session whenever your survey participants wants to fill in your survey.
https://exampletest.limequery.com/index.php/survey/index/sid/48315/newtest/Y?48315X2X222007=Y&48315X2X222008=Y
In the above scenario, the URL pertains to a survey with ID = 48315, group =2, question=22 and answercodes = 2007 and 2008.
Expressions
You can also use any expression here.
For example:
http://www.limesurvey.org/test.php?gender={if(sex=='Male','M','F')}&name;={name}
Passthrough fields
To use passthrough fields, you must define the variable names via panel integration. If you don't assign a target question, the variables will not be saved into responses (read more about the LimeSurvey panel integration feature). To use such a parameter in the end URL, just insert the tag {PASSTHRU:<paramname>} where <paramname> is the name of your input parameter.
Let's suppose that you defined a parameter named "foobar". The survey is started with a link like this one:
https://example.org/limesurvey/index.php/survey/index/sid/12345/lang/eb?foobar=XYZ123
The XYZ123 is the value you want "to pass".
The end URL of a survey with the following URL https://www.limesurvey.org/test.php?foobarout={PASSTHRU:foobar}
would then be converted to https://www.limesurvey.org/test.php?foobarout=XYZ123
Start URL
Prefilling a survey using GET parameters
You can prefill all answers except the upload and equation question type. You can use qcode naming for parameters and set the value for single question types or use the SGQA identifier.
Then, answers are set to the prefilled value. For single choice option, you must use the code of the answer, for multi choice question, you must use Y if you want to prefill the answer.
Here are some start URL examples:
http://ls.example.org/1234?QTEXT=prefilled
: Fill in the question with code QTEXT with 'prefilled'https://ls.example.org/1234?MULTI_SQ001=prefilled
(New in 3.14.1 ) : Fill in the subquestion SQ001 of question with title MULTI with 'prefilled' (for a multiple text question for example).https://ls.example.org/1234?single=-oth-&single_other=Other%20text
(New in 3.14.1 ) : Select the "other" answer option of a single choice question and fill in the other value with the text "Other text".https://ls.example.org/1234?1234X1X1SQ001=prefilled
: Fill in the subquestion SQ001 of question with ID: 1 from group with ID: 1 with 'prefilled'https://ls.example.org/1234?1234X1X1SQ001=A1
: Preselect the answer option 'A1' of the subquestion SQ001 of question with ID: 1 from group that has ID: 1.https://ls.example.org/1234?1234X1X1SQ001=Y
: Preselect the subquestion SQ001 of the question that has the ID 1, from the group that has ID: 1.
http://ls.example.org/1234?QTEXT=prefilled&newtest=Y
Prefilling a survey using GET parameters using URL parameters tab
You can prefill (sometimes easier) answers using URL parameters which can be configured in panel integration.
Prefilling and hiding the answer
You can use the hidden attribute of a question to hide it from your respondents. If so, the question still remains prefilled.