每隔一段时间,当我加载我的网站大约五分之一时,它无法加载网站,并在IE 9控制台中说:
SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined
require.js, line 929 character 25
SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined
require.js, line 929 character 25
SCRIPT5007: Unable to get value of the property 'extend': object is null or undefined
Module.js?ts=@@timestamp, line 52 character 3
SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined
require.js, line 929 character 25
SCRIPT5007: Unable …Run Code Online (Sandbox Code Playgroud) 我正在尝试通过gradle任务将命令行参数传递给我的shell脚本myconfiguration如下所示.
task dosomething(type:Exec) {
workingDir 'dir'
executable 'sh'
args '-c','source dosomething.sh $arg'
}
Run Code Online (Sandbox Code Playgroud)
我试图通过在终端中执行以下命令来传递它:
$ gradle dosomething -Parg=foo
Run Code Online (Sandbox Code Playgroud)
我做错了什么都不行?