我有一个带有这段代码的.ejs页面
<li><% if(userInfo.image=="" || userInfo.image==null || userInfo.image==undefined){ %>
<img src="/assets/img/default.png" class="img-responsive pic-bordered" alt="" /><%}else{%>
<img src="
<%= userInfo.image%>" class="img-responsive pic-bordered" alt="" /><%}%>
</li>
userInfo.image值为&#34; http://graph.facebook.com/xxx728122636xxxx/picture?redirect=true&width=432&height=432&#34; 但图像没有显示。
示例:https://jsfiddle.net/f6dsp3wd/1/
修改 好的,我想通了。我正在开发的这台计算机在其浏览器上有一个名为&#34; Ghostery&#34;这阻碍了facebook图像的显示
你可以关闭这个
答案 0 :(得分:0)
尝试使用https://graph.facebook.com/<%= userInfo.id %>/picture?type=square
。