TVDB API を使用しようとしていますが、xml を使用しているため、Paginator プラグインで Backbone を使用すると、次の 2 つのエラーが発生します。
Resource interpreted as Script but transferred with MIME type text/xml: "http://thetvdb.com/api/GetSeries.php?seriesname=dexter&callback=jQuery19104464824248570949_1373195205356&_=1373195205357". jquery.js:5
Uncaught SyntaxError: Unexpected token <
私のjsファイルは次のようになります:
Tv.Collections.Shows = Backbone.Paginator.requestPager.extend({
paginator_core: {
url: Attr.tv.url,
type: 'GET',
contentType: 'text/xml',
},
paginator_ui: { currentPage: 0 },
server_api: {},
parse: function(resp) {
c(resp);
},
});
そして、私はそれを次のように使用しています:
Tv.search = new Tv.Collections.Shows;
Tv.search.paginator_core.url = Attr.tv.url + $(ev.target).find('select').val() + '?seriesname=' + $(ev.target).find('.search_input').val();
Tv.search.fetch( function() {
c(Tv.search);
});
誰でも解決策を知っていますか?