gpt4 book ai didi

javascript - KnockoutJS - 在父标记中绑定(bind)子组件的点击事件

转载 作者:可可西里 更新时间:2023-11-01 14:44:23 28 4
gpt4 key购买 nike

我正在尝试编写一个可重用的组件库,并提出了这个困扰我一段时间的问题。

我已经使用 example 覆盖了模板引擎即提供。我认为他的“关于重写模板的快速说明”段落中提到了我的问题(不过我不确定,我的问题可能有所不同)。但我不知道如何实现它。任何帮助表示赞赏。问题是:

我的模板引擎基本上注册模板为“templateName”和“markUp”。首先,我有一个产品模型,如下所示:

 var Product = function(img, brand, description){
this.img = img;
this.brand = brand;
this.description = description;
};

然后,我的父 View 为:

{
name: 'productlist-view',
template: '<productlist-view class="product-list">\
<ul data-bind="foreach: {data: productlist, as: \'product\'}">\
<product-box params="parent: $parent, productInfo: product" data-bind="click: getProduct"></product-box>\
</ul>\
</productlist-view>'
}

现在,在这个productlist-view View 的viewModel 中,productlist 属性被定义为一个Product 实例数组。 product-box 组件应该为每个 Product 创建一个 viewModel 和一个关联的模板。 product-box 组件注册为 knockout 使用:

ko.components.register('product-box', {
'viewModel': function(params){
this.product = params.product;

this.getProduct = function(){
//Will perform an ajax call here
};
},
'template': '<div class="product-box" data-bind="click: getProduct">\
<img class="product-img fl" data-bind="attr: {src: product.img}"/>\
<p data-bind="text: product.brand"></p>\
<p data-bind="text: product.description"></p>\
</div>'
})

我知道,在上面的代码中,getProduct 方法有两个绑定(bind)。我会谈到这一点。现在,想象一下产品 ListView 中的那个不存在。

上面的代码生成的 html 如下所示:

<productlist-view ....
<ul ....
<product-box ....
<div class="product-box" ....
<img .../>
<p ... />
<p ... />
</div>
</product-box>
<product-box ..... goes on
</ul>
</productlist-view>

在上面的代码中,product-box 元素中的包装器 div 完全没有必要,因为它只是包装了元素。此外,该元素已经包含在 product-box 元素中。所以我想删除包装 div。 这里的问题是,我需要整个产品视觉是可点击的,但我无法将点击事件绑定(bind)到 productlist-view 模板中的 getProduct 方法。foreachproductlist-view 模板中循环迭代,$data 指向 product 的模型,而不是 viewModel(也称为产品框)。

如何从父 View 设置此 getProduct 方法?

有没有办法删除产品盒中不必要的包装 div?

换句话说,我怎样才能拥有一个可点击的产品框组件,如下所示:

<productlist-view ....
<ul ....
<product-box data-bind="click: getProduct"....
<img .../>
<p ... />
<p ... />
</product-box>
...
</ul>
</productlist-view>

最佳答案

可以制作一个自定义绑定(bind)处理程序,将点击绑定(bind)附加到父级,但我觉得这太聪明了一半(并且违反了封装)。如果您的 click 绑定(bind)与您的组件关联,则 div 成为组件的一部分是有意义的。您可以使用 virtual tag and the component binding 而不是使用自定义产品包装盒标签,因此您没有多余的包装器。

关于javascript - KnockoutJS - 在父标记中绑定(bind)子组件的点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32629433/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com