使用YSlow进行测量,它为my page提供了一个F级,用于发出太多的HTTP请求。将我的所有javascript组合到一个文件将导致更少的HTTP请求,但在这种情况下是否可能?我想让我的页面加载更快,所以我想知道在技术上是否可以将所有内容组合成一个javascript文件,或者如果我处于不能简化组件的位置:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '164355773607006', // App ID
channelURL : '//WWW.KOOLBUSINESS.COM/static/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // enable OAuth 2.0
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script><script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true&libraries=adsense"></script>
<script type="text/javascript" src="static/js/home.js"></script>
答案 0 :(得分:1)
有可能将所有javascript文件合并到服务器端的单个文件中。但我不认为它会有很大改善。
适当地使用Cache-Control标头以允许高速缓存和代理更有效地检索数据会更有效。