摘要:
代理模式的定义: Provide a surrogate or placeholder for another object to control access to it. 为其他对象提供一种代理以控制对这个对象的访问 代理模式的通用类图: Subject抽象主题角色:抽象主题类可以是抽象类或接口 阅读全文
摘要:
建造者模式的定义: 建造者模式(Builder Pattern)也叫作生成器模式,其定义如下: Separate the construction of a complex object from its representation so that the same construction pr 阅读全文
摘要:
如上的Ajax,请求的ulr返回的是一个字符串“success”和“error” 注意:该ajax的dataType设置为“json” 开始以为这样没问题,因为字符串也算一种的对象吧,但是后台返回的是“success”时,它总是提示“失败”,其实后台是执行成功了的 后来查阅jQuery帮助文档 然后 阅读全文