对于我的web应用程序,我将RequireJS集成到AngularJS + ASP.NET WEB API应用程序。但是,现在$http服务不能获取数据。
我引用了:来设置用于动态加载控制器的require js。
我的控制器代码:
'use strict';
define(['app'], function (app) {
var CategoryController = function ($scope, $http) {
$http.get('/api/Values/GetCategoryProducts'
我们从一个REST调用中得到了以下响应:
{content: "some html here with <script type="text/javascript" src="blah.js"></script>"}
我们像这样将它附加到dom中:
someContainer.html(data.content)
Chrome一次加载4到6个,就像加载任何其他用例一样。快地。
Firefox只按顺序加载它们,并且需要5到6秒的时间。
我们有什么选择可以让Firefox更快地加载这些文件?这一切为什么要发生?