我已经看到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被弃用了?
答案 0 :(得分:4)
据我所知,这是一个文档错误。根据Ray Camden's blog及其中的评论,它应该是debuggingipaddresses
而不是debugipaddress
。 Ray还使用它here并指出有一个更正。
非常标准,他似乎已经钉了一切。我的一部分 非常希望Ben Forta从未使用过大写范围 WACK书中的名字让我的眼睛不必每次都流血 时间我看到其他人这样做,但哦,哦:)。 一个小小的修正 - this.debugipaddress实际上是this.debuggingipaddresses(see here) - 因为它是一个doc bug而没有扣除任何积分。我也希望看到他提到smtpServerSettings的结构键 ({服务器= “”,用户名= “”,口令= “”})。