为了账号安全,请及时绑定邮箱和手机立即绑定

js如何实现对象参数格式的继承?

js如何实现对象参数格式的继承?

MM们 2019-04-08 11:18:38
想用js的继承优化一段代码,但是发现,参数使用对象格式的,就不行。我可不想在构造函数中按顺序来写参数。varP=function(opts){this.name=opts.name;this.age=opts.age;};P.prototype={constructor:P,getName:function(){returnthis.name;},getAge:function(){returnthis.age;}};varS=function(opts){P.call(this,opts);this.address=opts.address;};S.prototype=newP();S.prototype.constructor=S;S.prototype.getAddress=function(){returnthis.address;}这个怎么破?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 298 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信