我正在尝试使用SweetAlert2逐步创建表单,并且需要能够在基于if语句的链接中添加额外的步骤。
例如,在我的第三个模态中,我可能有一个广播问题,说“你会带一个加号1吗?”,如果用户选择“ true”,我需要它弹出一个额外的阶段,询问“加号的名称” ',如果用户选择false,则继续。
swal.mixin({
confirmButtonText: 'Next →',
showCancelButton: true,
progressSteps: ['1', '2', '3', '4']
}).queue([
{
title: 'Which event?',
text: 'Please start by selecting the event you would like to book in!',
input: 'select',
inputClass: 'swal-select-event',
inputPlaceholder: 'Please Select',
inputOptions: {
'1' : 'Dance Event',
'2' : 'Football Event'
},
inputValidator: (value) => {
return new Promise((resolve) => {
if (value === '') {
resolve('You need to select an event!')
} else {
resolve()
}
})
}
},
{
title: 'What Day?',
text: 'Which day are they due to come in?',
html:'<input id="swal-booking-date-select" type="date"/>',
preConfirm: () => {
return document.getElementById('swal-booking-date-select').value
},
inputValidator: (value) => {
return new Promise((resolve) => {
if (value === '') {
resolve('You need to select a date!')
} else {
resolve()
}
})
}
},
{
title: 'Plus one?',
text: 'Will you be bringing a plus one with you?',
input: 'radio',
inputOptions: {
'yes' : 'Yes',
'no' : 'No'
},
inputValidator: (value) => {
return new Promise((resolve) => {
if (value === null) {
resolve('I need to know if you will be bringing a plus 1!')
} else if(value === 'yes') {
//EXTRA STAGE GOES HERE TO GET PLUS ONE NAME
} else {
resolve()
}
})
}
},
{
title: 'What else?',
input: 'text',
text: 'Any other information that needs noting for this booking?'
}
]).then((result) => {
if (result.value) {
//Do something with all of the data here
}
})
有人知道这是否可能吗?
最佳答案
一种方法是将简单的Swal实例用于该额外的可选步骤...并将值保留在全局声明的备用变量中。
var plus1name="";
为了清楚起见,我将不重复所有代码,因为它们没有改变。这是要添加的新部分:
//EXTRA STAGE GOES HERE TO GET PLUS ONE NAME
swal({
title:"Plus one!",
text:"What is his/her name?",
input:"text"
}).then(function(value){
plus1name = value;
resolve();
});
然后在
.then(result)
部分://Do something with all of the data here
swalResults = result.value;
swalResults.push(plus1name.value)
console.log(swalResults);
因此,您将获得一个包含所有答案的数组。多余的问题被推到它的末尾,所以数组中的顺序不是询问的顺序...
我在CodePen上进行了研究。