我有一个道场 AJS.$.ajax({
url: "https://X.ngrok.io/rest/api",
type: "GET",
dataType: "json",
contentType: "application/json",
async: false, headers: {
'Authorization' : "JWT {{sessionToken}}"
},
success: function (data) {
console.log(e);
},
error: function(response) {
console.log(response);
}
})
,如下所示:
ConfirmDialog
稍后基于某些条件,我将动态更新this.myDialog = new ConfirmDialog({
title: "My Dialog",
content: "Do you want to continue?",
class: "confirmDialog",
closable: false
});
// change button labels
this.myDialog.set("buttonOk","Yes");
this.myDialog.set("buttonCancel","No");
// register events
this.myDialog.on("execute", function() {
self.continueSomething()
});
,如下所示:
ConfirmDialog
因此,最初会弹出一个警告对话框,要求用户输入是或否。在没有用户交互的设置时间过后,对话框将刷新,现在要求用户按OK进行重新路由。
假设弹出警告对话框时,用户位于其他浏览器窗口/选项卡上或最小化了浏览器选项卡,那么他们是否可以在dojo中将用户的注意力吸引到弹出的对话框上?