我正在使用把手,它在开发中工作正常。当我上传到github页面时,如果我直接打开页面,手柄模板仍然有效。但是如果我转到链接中的页面,那么把手循环就不起作用了。这是我的代码:
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="../bower_components/handlebars/handlebars.min.js"></script>
</head>
<div id="content-placeholder"></div>
<script id="some-template" type="text/x-handlebars-template">
{{#each this}}
<div class=" col-md-4 col-sm-6 " data-animation-type="fadeIn" data-animation-delay="0.5s" data-animation-duration="2s">
<div class="item-wrap">
<figure class="">
<div class="popup-call">
<a href="assets/custom/images/blog/01.jpg" class="gallery-item"><i class="flaticon-arrows-4"></i></a>
</div>
<img src="{{this.picture.picture.url}}" class="img-responsive" style="height: 200px" alt="img11"/>
<figcaption>
<div class="post-header">
<h5><a href="blogpost.html">{{this.name}}</a></h5>
</div>
</figcaption>
</figure>
</div>
</div>
{{/each}}
</script>
<script>
$(document).ready(function(){
var source = $("#some-template").html();
var template = Handlebars.compile(source);
$.getJSON('https://my-url.com/teams.json', function(data){
console.log(data);
$("#content-placeholder").html(template(data));
});
});
</script>
我已尝试在没有document.ready()
的情况下进行此操作,但这并没有改变任何内容。
答案 0 :(得分:0)
很明显,由于脚本标记中的相对路径,handlebars.js没有加载:
<script src="../bower_components/handlebars/handlebars.min.js"></script>
&#13;
替换src =&#34;&#34;与您最喜欢的CDN位置:
例如
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.6/handlebars.min.js"></script>
&#13;
答案 1 :(得分:0)
我认为Handlebars不能与Github页面一起使用。至少我的不是。