我已经使用LiveScript很长一段时间了,我注意到在undefined隐式返回的情况下,使用表达式void 8代替.
当然,我理解使用void,但我无法弄清楚为什么特别使用整数8.
例如,以下LiveScript:
x = if truthy then \success!
Run Code Online (Sandbox Code Playgroud)
将编译为:
var x;
x = truthy ? 'success!' : void 8;
Run Code Online (Sandbox Code Playgroud) 我需要在数据库更改时发送HTTP请求,因此我使用的是mysqludf扩展.
它在本地工作,但我怎样才能让它在Amazon RDS上运行?如果不可能,我需要一个解决方案来使用MySQL触发器和sys_exec函数或类似的东西.
有人可以帮助我吗?
谢谢!
"namelist":{
"name":"xyz",
"version":"1.0.0"
}
Run Code Online (Sandbox Code Playgroud)
How to find the length of the two values inside the namelist?