テンプレートをビューに動的に割り当てていますが、すべて正常に機能しました。私はエラーが発生しています
Failed to load resource: the server responded with a status of 403 (Forbidden)
この原因は何ですか..私はMac Safariを使用しています。
どうすればこの問題を解決できますか..
私の機能:
$.each(views,function(i,view){
requests.push($.get("js/temp/" + view + ".html", function(data){
eval(view).prototype.template = _.template(data);
console.log(data);//i am getting proper response.
}));
});