不确定最近是什么,试图拉出一个简单的图像
HTML
<div></div>
JS
$.getJSON("http://api.dribbble.com/shots/popular?callback=?", function(data) {
$('div').append('<img src="+data.shots[0].image_url+" />');
});
在控制台中它将拉动链接查找,但是当我尝试在页面上显示图像时,它会给我一个403.不确定我缺少什么。
答案 0 :(得分:1)
你错过了单引号。
$('div').append('<img src="' + data.shots[0].image_url + '" />');
答案 1 :(得分:0)
试试这个:
$.getJSON("http://api.dribbble.com/shots/popular?callback=?", function(data) {
$('div').append('<img src="' + data.shots[0].image_url + '" />');
});
答案 2 :(得分:0)
如果您愿意,可以使用这个简单的Javascript Dribbble API库:Dribbble.js
您可以在此处查看示例:Dribbble API Example
简单易用:
// get the most popular shots
Dribbble.list( 'popular', function( response ){
// write your code here
});
谢谢,祝你好运!