我已经尝试过:
drupal_add_js('http://somesite.com/pages/scripts/0080/8579.js', [
'type' => 'external',
'async' => TRUE
]);
和
drupal_add_js('http://somesite.com/pages/scripts/0080/8579.js', [
'type' => 'external',
'async' => 'async'
]);
没有结果。
有人知道我怎样才能做到这一点吗?
仅通过指定选项无法实现此目的,因为
drupal_add_js()
不支持 async
属性。
建议使用
defer
(恕我直言)更好,因为它不会阻止 HTML 解析。
async
:异步获取脚本,然后暂停 HTML 解析以执行脚本,然后继续解析。defer
:异步获取脚本并仅在 HTML 解析完成后执行。但是,如果您确实需要
async
属性,则可以实现 hook_preprocess_html_tag
来更改主题变量,如下所示:
function moduleortheme_preprocess_html_tag(&$variables) {
$el = &$variables['element'];
if ($el['#tag'] !== 'script' || empty($el['#attributes']['src'])) {
return;
}
# External scripts to load asynchronously
$async = [
'http://somesite.com/pages/scripts/0080/8579.js',
#...
];
if (in_array($el['#attributes']['src'], $async)) {
$el['#attributes']['async'] = 'async';
}
}