CF9 中持久性 CFC 的 New/CreateObject() 与 EntityNew() 之间的区别?
在 CF9 中为持久 CFC 创建对象的 New/CreateObject() 与创建实体的 EntityNew() 之间有什么区别(如果有)?
What are the differences (if any) between New/CreateObject() to create an object vs EntityNew() to create an entity in CF9 for persistent CFC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 New() 和 CreateObject() 时,您需要指定 CFC 的完整路径。
使用EntityNew(),您只需要传入实体的名称。
With New() and CreateObject() you need to specify the full path to the CFC.
With EntityNew() you just need to pass in the name of the entity.
引用自: 学习 ColdFusion 9:EntityNew() 与 NEW 运算符/CreateObject()
quoted from: Learning ColdFusion 9: EntityNew() vs. The NEW Operator / CreateObject()