I am loading json data from my api that contains urls to images outside of my domain. I\'ve done this in the past, not with Angular, and I\'ve never seen this problem...
It seems that imdb is checking the referer so other parties are not allowed to embeded their images directly on their website. If you try with images from other domains, it works: http://jsfiddle.net/PZJKZ/2/
var app = angular.module('app', []);
function HomeController($scope) {
$scope.search = function() {
$scope.movies = [
{ Title: 'The Matrix', Poster: 'http://dartr.com/wp-content/uploads/2011/10/javascript-logo.png' },
{ Title: 'The Matrix Reloaded', Poster: 'http://wpmu.org/wp-content/uploads/2010/04/jquery-logo1.png' }
];
};
}