在JavaScript SDK上找到 http://developers.facebook.com/docs/reference/javascript/
"...
Asynchronous Loading
--------------------------------
This code loads the SDK asynchronously so it does not block loading other
elements of your page. This is particularly important to **ensure fast page
loads for users and SEO robots**.
Synchronous Loading
--------------------------------
It is possible to load the SDK synchronously which may be useful for
debugging, but this method is not recommended for typical use. Synchronous
operations will block the web page, resulting in worse performance and a
slower user experience. This **may also negatively impact SEO due to the
increased slowness perceived by robots and crawler**s. ..."
那么,这些陈述中的哪一个是正确的?
答案 0 :(得分:0)
两者都是。
对于调试同步很好。
对于生产代码,异步更好。