Questions tagged «proxy-classes»

2
教义2中的代理是什么?
我刚读完所有《 Doctrine 2》文档,开始了自己的沙箱,了解了大多数原理,但是仍然有一个问题,我在文档中找不到任何完整的解释。 什么是Proxy课程? 我应何时在实体上使用它们? 据我了解,代理类增加了一层,可让您向实体添加其他功能,但是为什么要使用代理而不是在实体类中自己实现方法呢?

4
首先关闭EF代码的CTP5 ProxyCreationEnabled的不利之处是什么
我的WCF服务可以从代码的第一个模型回归类的唯一方法是通过设置ProxyCreationEnable来false使用下面的代码。 ((IObjectContextAdapter)MyDb).ObjectContext.ContextOptions.ProxyCreationEnable = false; 这样做的负面后果是什么?一个好处是,我至少可以将这些动态类型序列化,以便可以使用WCF通过电线发送它们。

7
类方法中的打字稿“ this”
我知道这可能是非常痛苦的基本工作,但是我很难缠着它。 class Main { constructor() { requestAnimationFrame(this.update); //fine } update(): void { requestAnimationFrame(this.update); //error, because this is window } } 看来我需要代理,所以可以说使用Jquery class Main { constructor() { this.updateProxy = $.proxy(this.update, this); requestAnimationFrame(this.updateProxy); //fine } updateProxy: () => void update(): void { requestAnimationFrame(this.updateProxy); //fine } } 但是从Actionscript 3的背景来看,我不太确定这里发生了什么。抱歉,我不确定Javascript的开始位置和TypeScript的结束位置。 updateProxy: () => void …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.