我在包含脚本后尝试使用变量,但它说变量“PHP_MODULE_ROOT 未定义,当它定义时。
$.getScript("../IMS3/assets/js/globals.js") ;
const CONTROLER = PHP_MODULE_ROOT+'/manageContact.php' ;
global.js 中的代码是:
var SYSTEM_ROOT = 'http://place.mysite.com/IMS3' ; // The system root, this needs to be changed if you move the system.
var ASSETS_ROOT = SYSTEM_ROOT+'/assets' ; // The root for all things like JS and PHP
var JS_MODULE_ROOT = ASSETS_ROOT+'/js/modules' ; // The JS modules like dialog boxes and widgets etc.
var PHP_MODULE_ROOT = ASSETS_ROOT+'/php/modules' ;
我尝试将 const 声明作为回调声明放在 $.getScript 中,但我得到了相同的结果。