应用于作为 svg 元素的 el 的主干事件

发布于 2024-12-20 19:09:11 字数 1171 浏览 0 评论 0原文

我有一个 SVG 画布,其中包含我想要响应点击的文本。下面的代码没有完成工作:

var MyView = Backbone.View.extend({
tagName : "text",

events : {
    "click" : "clickhandler"
},

initialize : function() {
  this.centerX = this.options.centerX;
  this.centerY = this.options.centerY;
  this.svg = this.options.svg;
  this.tagText = this.model.get("tag_name");
  this.render();
},

clickhandler : function(event) {
  console.log("I was clicked!");    //This is not firing on click
},

render : function() {
  this.el = this.svg.text(this.centerX, this.centerY, this.tagText, {});
  return this;
}
});

这是在另一个视图的渲染函数中被调用的:

container.svg({
    onLoad : function(svg) {
        for ( var i = 1; i < that.relatedTags.length; i++) {
            tagView = new MyView({
                model : this.relatedTags.at(i),
                centerX : 100,
                centerY : 200,
                svg : svg
            });
        }
        container.append(tagView);
    }
});

它显示得很好,如果我把它放在 for 循环的末尾:

$(tagView.el).click(function() {
  alert("xx");
});

那么点击就可以了,但是我需要访问与视图关联的主干模型,因此我更喜欢主干事件而不是直接的 JQuery 事件。

I have an SVG canvas with text that I would like to respond to clicks. The code below isn't getting the job done:

var MyView = Backbone.View.extend({
tagName : "text",

events : {
    "click" : "clickhandler"
},

initialize : function() {
  this.centerX = this.options.centerX;
  this.centerY = this.options.centerY;
  this.svg = this.options.svg;
  this.tagText = this.model.get("tag_name");
  this.render();
},

clickhandler : function(event) {
  console.log("I was clicked!");    //This is not firing on click
},

render : function() {
  this.el = this.svg.text(this.centerX, this.centerY, this.tagText, {});
  return this;
}
});

This is being called in the render function of another view as such :

container.svg({
    onLoad : function(svg) {
        for ( var i = 1; i < that.relatedTags.length; i++) {
            tagView = new MyView({
                model : this.relatedTags.at(i),
                centerX : 100,
                centerY : 200,
                svg : svg
            });
        }
        container.append(tagView);
    }
});

It shows up just fine and if I throw this in at the end of the for loop :

$(tagView.el).click(function() {
  alert("xx");
});

Then the clicking works but I need to access the Backbone Model associated with the view so I'd much prefer the backbone event to a straight JQuery event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2024-12-27 19:09:11

这里的问题是,您在渲染方法中设置视图的元素。但主干尝试在初始化时添加事件。因此,当主干尝试添加事件时,您的案例中没有元素。因此,要么您必须使用 svg 文本启动视图,要么在渲染方法中手动添加事件。

也许你可以在 svg 本身上添加事件,jquery 足够聪明来处理委托。但在这种情况下我不确定。

The problem here is, that you set the element of the view in the render method. But backbone tries to add the events on initialization. So when backbone tries to add the events there is no element in you case. So either you have to start your view with your svg text, or you add the events by hand in your render method.

Maybe you can add the events on the svg itself and jquery is clever enough to handle the delegation. But I'm not sure in this case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文