我试图在WordPress管理中使用下划线。这就是我所做的:我在页面的最后将一个脚本排队,如下所示:
function load_admin_scripts() {
wp_enqueue_script( "my-admin", get_template_directory_uri() . "/assets/scripts/admin.js", array(\'jquery\', \'wp-util\'), null, true );
}
add_action(\'admin_enqueue_scripts\', \'load_admin_scripts\');
。。。然后在脚本文件中,我目前只尝试以下操作:
console.log( jQuery ); // is defined
console.log( underscore ); // ReferenceError: underscore is not defined(…)
有人能告诉我解决这个问题的方法吗?
最合适的回答,由SO网友:CodeMascot 整理而成
去找你chromeJavaScript 控制台窗口和写入_.VERSION
. 然后按Enter键。它将返回包含的Underscore JS. 它还将确保Underscore JS 包含或排队。和Underscore JS 包括在WordPress 默认情况下为admin。你不需要排队。就像在其他地方一样使用它。