1 Star 0 Fork 0

唐心/JSPatternDesign

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
strategyV3.js 2.84 KB
一键复制 编辑 原始数据 按行查看 历史
唐心 提交于 2021-10-05 00:34 . init
// /不需要共享的数据写在构造函数中,需要共享的数据写在原型中。//https://segmentfault.com/a/1190000018057701
// 抽象基类对象, 后缀作为具体类的原型
var DicApplyAdd_Scrap = {
//增加属性与方法。
initialize: function (argument) {
//this.name = name;
this.doSomething(" initalize");//指向哪里
console.table("被初始化了"+arguments[0]);
},
getName: function () {
console.log("getname 输出");
return "base class?";
},
doSomething: function (who) {
console.log("base class do somethin fn"+who);
},
//初始化表格
initGrid: function () {
// 替换方法还是更多细粒度?
}
};
// strategys
let vendor_s = function () {// 使用this 则变成了构造函数
// this.initialize.apply(this,["vendors_s 构造"]);// 在前,调用的就是原型对象, 因为还没有覆盖this 还没有doSomething()
this.doSomething = function () { // when vendor is 被new时,函数变成了构造函数。this,此时this指向刚new的出来的。
console.log("具体策略vendor做something");
Object.getPrototypeOf(this);//可以得到原型,然后修改。?? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf
};
this.initialize.apply(this,["调用vendors_s的dosomething "]);// 在后,调用的就是上面的doSomething, 为this指向
};
// let GW_s = function(){
// this.doSomething = function () {
// console.log("具体策略GW做something");
// };
// // this.prototype.initialize.apply(this,arguments);//
// };
vendor_s.prototype = Object.create(DicApplyAdd_Scrap);// 继承 dic。
// vendor_s.constructor= vendor_s; //修正,指向正确的构造函数. js 不保证指向正确的对象。尽量不要依赖目前看到的作用之一,通过实例的构造函数给闭包中的函数增加属性方法。 使用标准方法Object.getPrototypeOf()代替__proto__可以做到不改变实例对象的原型链而访问对象或者添加/修改必要的属性。
// https://www.zhihu.com/question/19951896
// GW_s.prototype = Object.create(DicApplyAdd_Scrap)
//context上下文
let Context = function () {
this.strategy = null;
};
Context.prototype = {
setStrategy: function (strategy) {
this.strategy = strategy;
},
exeStrategy: function (params) {
this.strategy.doSomething();
},
};
// 实例相关具体策略
const status_is_vendor = new vendor_s();
// const status_is_GW = new GW_s();
status_is_vendor.doSomething();
// status_is_GW.doSomething();
status_is_vendor.getName();
// status_is_GW.prototype.doSomething(); //还是默认的没有被改变。字面量?
// const status_switch = new Context(); //必须new 下面才有setStrategy这个方法。
// status_switch.setStrategy(status_is_vendor);
// status_switch.exeStrategy();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dangxin/jspattern-design.git
git@gitee.com:dangxin/jspattern-design.git
dangxin
jspattern-design
JSPatternDesign
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385