0

我在使用 jQuery UI 对话框模式时遇到问题,并尝试传入动态名称/值以用作要执行的回调函数(以及参数)

我有一个调用 UI 对话框的函数......作为接受参数列表,其中一个是回调函数名称......以及伴随它的任何参数。

我无法让 jQuery 将动态名称/参数识别为函数。

function ShowDialogBox(title, content, btn1text, btn2text, callbackFunction, argList){
var btn1css;
var btn2css;

//hide buttons if not in use
if(btn1text == ''){
    btn1css = "hidecss";
}else{
    btn1css = "showcss";
}

if(btn2text == ''){
    btn2css = "hidecss";
}else{
    btn2css = "showcss";
}

//main message/content
$("#lblMessage").html(content);


//params
$("#dialog").dialog({
    resizable: false,
    title: title,
    modal: true,
    width: '400px',
    height: 'auto',
    bgiframe: false,
    //hide: {effect: 'scale', duration: 100},
    
    buttons: [
        {
            text: btn1text,
            "class": btn1css,
            click: function () {
                //alert("button 1 pressed");
                
                //new dialog when cup is in position
                console.log('Call Back Check: ' + callbackFunction);
                console.log("Arg List: " + argList);
                eval(callbackFunction + '()'); // executes, but cant get any params?
                eval(callbackFunction + '(' +argList +')'); //doesnt work
                //callbackFunction(argList); // doesnt work


                //functionTest = window[callbackFunction];
                //functionTest(argList);
                
                //Goal: call new ShowDialogBox with different callback function name
                //ShowDialogBox('', 'Press start when the cup is in the holder.', 'Start', '', 'submitFunction',null);
                
                $("#dialog").dialog('close');
                
            }
        },
        {
            text: btn2text,
            "class": btn2css,
            click: function () {
                //alert("button 2 pressed");
                $("#dialog").dialog('close');
            }
        }
    ]
});

}

callbackFunction - 要调用的回调函数的名称 (ShowDialogBox) argList - 伴随所述回调函数的参数/参数列表

这是它的调用方式(回调函数名称为:再次显示对话框框[但这次使用不同的回调函数])

ShowDialogBox('','Are you sure you want to order: <br>' + currentSelection, 'Continue','No', 'ShowDialogBox','mutiple ags go here, as commana string? array?');

我的问题:

1.) 我如何传递: ShowDialogBox 作为 callbackFunction 参数/值,并将其视为在单击按钮 #1 后执行的实际函数?

2.) 我怎样才能将参数列表传递给这个“动态”命名的回调数组?

更新:所以我可以执行动态功能(可以这么说)..但我似乎无法传递任何参数?

更新 2:现在向我指出了传播语法.. 事情正在满足我的需要.. 但我想我有一个关于扩展它的问题?

  • 为发布而修剪,没有参数,没有按钮操作..等

      function ShowDialogBox(title, content, btn1text, btn2text, callbackFunction, ...argList){
      //if not empty....execute it as a function! (nice)
      if(callbackFunction != ''){                         
          // Execute the callback (spread syntax)
          callbackFunction(...argList);
      }
     }
    

作品:(因为我最后一个嵌套的回调函数没有任何参数要传递)

//double verify (dialog prompts)
ShowDialogBox('','Are you sure you want to order: <br>' + currentSelection, 'Continue','No', ShowDialogBox, '', 'Please place drink in holder and press start when ready.', 'Start', '', submitForm, '');

但是这不起作用..因为传递了一个额外的嵌套 callBackFunction 名称.. AND 参数?(但由于第一个 callBackFunction 参数之后的所有内容现在都是“...argList”。我不知道如何访问它?(如果可能的话))

ShowDialogBox('','Are you sure you want to order: <br>' + currentSelection, 'Continue','No', callBackTest, 'Some Title', 'Some Message', 'Button 1 text', 'Button 2 text', someOtherCallBackFunction, 'no', 'args allowed', 'in nested callback function? how is it done (again?)');
4

1 回答 1

0

对于第一个问题,只是不要引用回调函数名称。

ShowDialogBox('', text , 'Continue','No', submitForm);

function submitForm() { /* ... */ }

要将动态数量的参数传递给它,请使用扩展语法,这将创建一个数组,其中包含传递给函数并返回给各个参数的所有剩余参数。

function ShowDialogBox(title, content, btn1text, btn2text, callbackFunction, ...argList) {
    // Execute the callback
    callbackFunction(...argList);
}
于 2020-10-07T01:56:20.373 回答