gpt4 book ai didi

javascript - Instafeed.js 不在页面上显示图像

转载 作者:行者123 更新时间:2023-11-28 09:02:21 26 4
gpt4 key购买 nike

我尝试将 instafeed.js 用于我的本地站点。但我不明白为什么我帐户中的图片不显示?

我的代码

已连接 instafeed.js 和我编写脚本的文件

<script type="text/javascript" src="js/instafeed.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>

图片部分

<section class="instagram-wrap">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="instagram-content">
<h3>Latest Photos</h3>
<div class="row photos-wrap">
<div id="inst"></div>
</div>
</div>
</div>
</div>
</div>
</section>

和具有 instafeed 值的 app.js

$(function() {
var feed = new Instafeed({
get: 'user',
userId: ID,
accessToken: 'Token',
target: 'inst',
links: true,
limit: 8,
useHttp: true,
sortBy: 'most-recent',
resolution: 'standard_resolution',
template: '<div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
<div class="photo-box">
<div class="image-wrap">
<img src="http:{{image}}"/>
</div>

<div class="description">{{caption}} </div>
</div>
</div>'

});
feed.run();
});

最佳答案

除了有关模板定义的错误之外,您的代码有效:

SyntaxError: unterminated string literal

将所有模板放在一行中或在每行末尾使用\ 以获得multi-line string literal。 .

关于javascript - Instafeed.js 不在页面上显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26853241/

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