事件 - htmx:confirm

此事件在请求的每个触发器上触发(不仅仅是在具有 hx-confirm 属性的元素上)。它允许你取消(或延迟)发出 AJAX 请求。如果你调用 preventDefault() 事件,它将不会发出给定的请求。该 detail 对象包含一个函数,evt.detail.issueRequest(skipConfirmation=false) 可用于在稍后发出实际的 AJAX 请求。结合这两个功能,你可以创建一个异步确认对话框。

这是一个基本示例,展示了 htmx:confirm 事件的基本用法而不改变默认行为:

document.body.addEventListener('htmx:confirm', function(evt) {
  // 0. To modify the behavior only for elements with the hx-confirm attribute,
  //    check if evt.detail.target.hasAttribute('hx-confirm')

  // 1. Prevent the default behavior (this will prevent the request from being issued)
  evt.preventDefault();

  // 2. Do your own logic here
  console.log(evt.detail)

  // 3. Manually issue the request when you are ready
  evt.detail.issueRequest(); // or evt.detail.issueRequest(true) to skip the built-in window.confirm()
});

下面是对任何带有 confirm-with-sweet-alert="{question}" 属性的元素使用sweat alert 的示例:

document.body.addEventListener('htmx:confirm', function(evt) {
  // 1. The requirement to show the sweet alert is that the element has a confirm-with-sweet-alert
  //    attribute on it, if it doesn't we can return early and let the default behavior happen
  if (!evt.detail.target.hasAttribute('confirm-with-sweet-alert')) return

  // 2. Get the question from the attribute
  const question = evt.detail.target.getAttribute('confirm-with-sweet-alert');

  // 3. Prevent the default behavior (this will prevent the request from being issued)
  evt.preventDefault();

  // 4. Show the sweet alert
  swal({
    title: "Are you sure?",
    text: question || "Are you sure you want to continue?",
    icon: "warning",
    buttons: true,
    dangerMode: true,
  }).then((confirmed) => {
    if (confirmed) {
      // 5. If the user confirms, we can manually issue the request
      evt.detail.issueRequest(true); // true to skip the built-in window.confirm()
    }
  });
});

事件参数

  • detail.elt - 带确认属性的元素
  • detail.etc - 附加请求信息(大部分未使用)
  • detail.issueRequest(skipConfirmation=false) - 可以调用该函数来发出请求(应与evt.preventDefault()! 配对),如果 skipConfirmation 是 true则原始的 window.confirm() 不执行
  • detail.path - 请求的路径
  • detail.target - 触发请求的元素
  • detail.triggeringEvent - 触发此请求的原始事件
  • detail.verb - 请求动作(例如:GET)
  • detail.question - 传递给 hx-confirm 属性的确认信息(仅当属性存在 hx-confirm 时才可用)