- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ColdFusion 服务器已更新到 ColdFusion 2018(从 ColdFusion 9 或 11)。
该服务器上最旧的应用程序之一包含如下代码:< cfif arguments[key] NEQ "">
以前,这似乎等同于isDefined("arguments.key")
或 StructKeyExists(arguments, key)
.
今天,尽管isDefined("arguments.key")
是假的,StructKeyExists(arguments, key)
也是负面的,<cfif arguments[key] NEQ "">
失败,因为 arguments[key] 的行为不再像空字符串。事实上,< cfdump var="#arguments[key]#">
显示“未定义”。
我能做些什么来避免在使用空字符串而不是 StructKeyExists
的地方更改代码吗? ?也许是 ColdFusion 服务器参数? (THIS.enableNullSupport
没有帮助)
最佳答案
ARGUMENTS
范围的括号表示法将始终为 所有版本的 Adobe ColdFusion 中不存在的键和值返回一个 undefined
值.
function f() {
return arguments[key];
}
f(); // returns undefined
function f() {
return arguments["key"];
}
f(); // returns undefined
function f() {
return arguments.key;
}
f(); // throws exception: Element KEY is undefined in ARGUMENTS
所有 3 种情况都应该抛出异常。这是不一致的,应视为错误。它可能只是为了向后兼容而保留。
无论如何,正如您已经注意到的那样:
// ACF 10
(undefined eq "") -> TRUE
// ACF 11
(undefined eq "") -> TRUE
// ACF 2016
(undefined eq "") -> TRUE
// ACF 2018
(undefined eq "") -> FALSE
// ACF 2021
(undefined eq "") -> TRUE
Adobe 在 ACF 2018 中引入了 NULL 支持并打破了这种行为。他们在 ACF 2021 中修复了它,但在 ACF 2018 中没有修复,这是 Adobe 的经典举措。
要么向 Adobe 报告此错误并希望获得更新(ACF 2018 的最后一次错误修复是在 2019 年 11 月完成的,祝你好运),要么通过不依赖于这种不可靠的函数参数检查来修复你的旧应用程序。
关于ColdFusion 2018 不会将 undefined 解释为空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66387940/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!