每个人。
我刚开始使用mobifyjs工具包,遇到了将两个元素集合合并为一个的问题。在我试图移动的页面上,有两组链接:带有文本和图像。HTML 如下所示:
<!-- links with text -->
<div id="products">
<a href="Product1">Product 1</a>
<a href="Product2">Product 2</a>
</div>
...
<!-- somewhere else on the page -->
<div id="productImages">
<a href="Product1"><img src="Product1.png /></a>
<a href="Product2"><img src="Product2.png /></a>
</div>
它需要变成以下内容:
<div class="items">
<div class="item">
<div class="img">
<a href="Product1"><img src="Product1.png /></a>
</div>
<div class="title">
<a href="Product1">Product 1</a>
</div>
</div>
<div class="item">
<div class="img">
<a href="Product2"><img src="Product2.png /></a>
</div>
<div class="title">
<a href="Product2">Product 2</a>
</div>
</div>
</div>
我目前的解决方案是使用地图功能,所以在 mobify.konf 我有如下内容:
'content': function(context) {
return context.choose(
{{
'templateName': 'products',
'products': function(){
return $('#productImages a').map(function() {
var href = $(this).attr('href') || '';
var div = $('<div class="item"><div class="img"></div><div class="title"></div></div>');
div.find('.img').append($(this).clone());
div.find('.title').append($('#products a[href="' + href + '"]').clone());
return div;
});
}
})
}
模板是:
<div class="items">
{#content.products}
{.}
{/content.products}
</div>
该代码确实有效,但该方法本身非常难看,因为我必须将一段标记代码从 tmpl 文件移动到 mobify.konf 中。任何人都可以提出更好的解决方案吗?