我无法让 HTMX 与 Bun 一起使用,因为我在导入时遇到了问题

I couldn't make HTMX work with Bun because I had a issue with importing

提问人:bear 提问时间:9/14/2023 更新时间:9/14/2023 访问量:255

问:

安装方式

bun add htmx.org
bun add v1.0.1 (31aec4eb)

 installed [email protected]


 1 packages installed [2.40s]

导入import "htmx.org";

用于

htmx.onLoad(function(content) {
    var sortables = content.querySelectorAll(".sortable");
    for (var i = 0; i < sortables.length; i++) {
      var sortable = sortables[i];
      new Sortable(sortable, {
          animation: 150,
          ghostClass: 'blue-background-class'
      });
    }
})

收到错误Cannot find name 'htmx'.ts(2304)

我正在尝试使用sortableJS,但是当我导入HTMX时,我没有收到HTMX找到错误。

感谢您的帮助。

打字稿 htmx sortablejs bun

评论

0赞 0stone0 9/14/2023
请分享您的完整包子文件
0赞 w.k 9/16/2023
你错过了这里的所有细节,所以我同意:展示更多代码以及你如何执行它。一些早期的假设:bun 是后端的 JS 运行时,htmx 是前端(客户端)库。

答: 暂无答案