Drupal 7:使用 drupal_add_js 时如何将 async 属性添加到外部 JS 脚本?

问题描述 投票:0回答:1

我已经尝试过:

  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'
  ]);

没有结果。

有人知道我怎样才能做到这一点吗?

javascript php drupal drupal-7 drupal-hooks
1个回答
1
投票

仅通过指定选项无法实现此目的,因为

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';
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.