我做了两个类,即人-父类和学生类-子类。我正在尝试实现继承。我也在尝试以模块化模式实现它。但它没有得到正确的。对于代码块,请检查下面。
人.js
var Person = function() {
var details, constructor, getDetailsByAttribute, setDetailsByAttribute, setDetails, getDetails, clearDetails;
clearDetails = function() {
details = {
uid : '',
name : '',
email : ''
};
};
getDetailsByAttribute = function(attr) {
return details[attr];
};
setDetailsByAttribute = function(key, value) {
if(details.hasOwnProperty(key)) {
details[key] = value;
}else {
console.log('invalid key');
}
};
setDetails = function(param) {
clearDetails();
for(var attr in param) {
if(details.hasOwnProperty(attr)) {
details[attr] = param[attr];
}
}
};
getDetails = function() {
return details;
};
/**
* During object creation;
*/
if(arguments.length >= 1) {
//clearDetails();
setDetails(arguments[0]);
}
return {
getDetailsByAttribute : function(attr) {
return getDetailsByAttribute(attr);
},
setDetailsByAttribute : function(key, value) {
setDetailsByAttribute(key, value);
},
setDetails : function(params) {
setDetails(params);
},
getDetails : function() {
return getDetails();
},
clearDetails : function() {
clearDetails();
}
};
};
学生.js
var Student = function() {
Person.call(this,arguments);
};
Student.prototype = new Person();
索引.html
<html>
<head>
</head>
<body>
<script type="text/javascript" src="modules/Person.js"></script>
<script type="text/javascript" src="modules/Student.js"></script>
<script type="text/javascript">
var person1, person2, person3, student1;
person1 = new Person({
uid : 5225,
name : 'jaison',
email : 'jaison@jaison.com'
});
person2 = new Person({
uid : 5222,
name : 'jatin',
email : 'jatin@jatin.com'
});
person3 = new Person();
person3.setDetails({
uid : 5221,
name : 'sarath',
email : 'sarath@sarath.com'
});
person3.setDetailsByAttribute('name', 'sarath');
student1 = new Student({
uid : 5221,
name : 'sachin',
email : 'sachin@sachin.com'
});
console.log('person 1 : ',person1.getDetails());
console.log('person 2 : ',person2.getDetails());
console.log('person 3 : ',person3.getDetails());
console.log('student 1 : ',student1.getDetails());
//console.log(student1.get);
</script>
</body>
</html>