3

我已经看到 Application.cfc 的以下代码(需要调试的 ip 地址列表):

<!---seen in blogs and perhaps earlier versions of CF documentation, livedocs isn't working for CF 7 & 8 for me tonight--->
<cfset this.debugipaddress = "192.168.1.15,192.168.1.27">

<!--- documented in CF 9 & 10--->
<cfset this.debuggingIPAddresses = "192.168.1.15,192.168.1.27">

http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-750b.html

http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-750b.html

我想知道这两个变量之间是否存在差异?我正在使用 ColdFusion 10,如果它们相同,是不是更喜欢另一种?也许 this.debugipaddress 已被弃用?

4

1 回答 1

4

据我所知,这是一个文档错误。根据 Ray Camden 的博客和其中的评论,应该debuggingipaddresses不是debugipaddress. 雷也在这里使用它并指出有一个更正。

相当标准,他似乎已经掌握了一切。我的一部分强烈希望 Ben Forta 永远不会在 WACK 书中使用大写范围名称,这样每次我看到别人这样做时我的眼睛都不会流血,但是哦,好吧:)。一个小的更正 - this.debugipaddress 实际上是 this.debuggingipaddresses (见这里) - 因为它是一个文档错误,所以没有扣分。我也希望看到他提到 smtpServerSettings ({server="",username="",password=""}) 的结构键。

于 2013-05-07T10:45:41.553 回答