partials中的相对路径不起作用

partials中的相对路径不起作用

本文介绍了handlebars.js:partials中的相对路径不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我用部分文件替换了文件中的一些重复代码,但现在相关部分的调用不再有效。



我有这样的数据结构:

  var data = {staff:[
{name:Alan},
{ name:Bettina}
],company:Rad,Inc.};

原始模板如下所示:

 < script id =first_templatetype =text / x-handlebars-template> 
{{#each staff}}
< li>名称:{{name}},公司:{{../company}}</li>
{{/ each}}
< / script>

我像这样改变它以使用部分内容:

 < script id =list-partialtype =text / x-handlebars-template> 
< li>名称:{{name}},公司:{{../company}}</li>
< / script>

< script id =second_templatetype =text / x-handlebars-template>
{{#each staff}}
{{> list}}
{{/ each}}
< / script>

在部分公司名称不会呈现的示例中。我在jsfiddle上做了一个工作示例:


解决方案 div>

由raidendev在评论中回复

好的,我发现,我的问题已经在stackoverflow上讨论和解决,但我不知道,寻找。查看问题解决我的确切问题。


I replaced some repeating code in my file with a partials, but now the call of an relative part is not working anymore.

I have this data-structure:

var data = { staff: [
         {"name": "Alan"},
         {"name": "Bettina"}
         ],"company": "Rad, Inc."};

The original template looks like this:

<script id="first_template" type="text/x-handlebars-template">
 {{#each staff}}
     <li>Name: {{name}} , Company: {{../company}}</li>
 {{/each}}
 </script>

I changed it like this to use a partial:

<script id="list-partial" type="text/x-handlebars-template">
  <li>Name: {{name}} , Company: {{../company}}</li>
</script>

<script id="second_template" type="text/x-handlebars-template">
 {{#each staff}}
    {{> list}}
 {{/each}}
</script>

In the example with the partial the company name does not get rendered. I put a working example on jsfiddle: http://jsfiddle.net/staeff/qwms6h2b/

Does anyone see, why it is not working, what I am trying to do?

解决方案

Answered by raidendev in the comments

Ok, I found out, that my question has been discussed and solved on stackoverflow, but I didn't know, what to search for. See question handlebars - is it possible to access parent context in a partial? for solutions to my exact problem.

这篇关于handlebars.js:partials中的相对路径不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 15:14