나는이 js 코드를 가지고 그것을 실행한다. 완벽하게 잘 동작한다. 완전히 이해할 수 없다. 도와주세요 !! 함수 finduser에서 "this"with javascript code
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div class="members-wrapper"></div>
<script>
var db = [
{fname:"oscar", lname:"santosh", email:"[email protected]", country:"Brazil", id:101},
{fname:"juan", lname:"mata", email:"[email protected]", country:"Spain", id:102},
{fname:"eden", lname:"hazard", email:"[email protected]", country:"Belgium", id:103}
];
function CaseName(str)
{
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
};
//our object with channable method
var cascadeVar ={
user:"",
finduser: function(userEmail)
{
var arraylen = db.length,i;
for(i=arraylen-1;i>=0;i--)
{
if(db[i].email === userEmail)
{
this.user = db[i];
break;
}
}
return this;
},
formatname : function()
{
if(this.user){
this.user.fullname = CaseName(this.user.fname) + " " + CaseName(this.user.lname);
}
return this;
},
createLayout:function() {
if (this.user) {
this.user.viewData = "<h2>Member: " + this.user.fullname + "</h2>" + "<p>ID: " + this.user.id + "</p>" + "<p>Email: " + this.user.email + "</p>";
}
return this;
},
display : function()
{
if (!this.user) return;
$(".members-wrapper").append(this.user.viewData);
}
};
cascadeVar.finduser("[email protected]").formatname().createLayout().display();
</script>
</body>
</html>
, 왜 내가
this.user = db[i];
로 사용해야합니까? 사용자가 cascadeVar 객체에 속해 있고 cascadeVar를 가리키고 있기 때문입니다. "예"인 경우 "이"가 없으면 왜 작동하지 않습니까? 나는 어리석은 짓을하지만 여전히 혼란 스럽다는 것을 알고 있습니다.
this
을 무시하면 finduser() 함수에서 사용자가 정의되지 않습니다.?
동일한 기능으로 돌아 오는 return this
은 무엇입니까?
무엇이 return this
반환은 모든 단일 기능입니까?
도와주세요!
는'이 반환은, '모든 방법 부분은 체인 방법에 당신을 수 있습니다. –
HOW ??설명해주세요. – Chelsea