燕鹏
4 년 전
7개의 변경된 파일과 27개의 추가작업 그리고 15개의 파일을 삭제
@ -1,5 +0,0 @@ |
|||
<template name="userPage"> |
|||
<div> |
|||
用户名:{{username}} |
|||
</div> |
|||
</template> |
@ -0,0 +1,5 @@ |
|||
<template name="userPage"> |
|||
<div> |
|||
用户名:{{user.username}} |
|||
</div> |
|||
</template> |
@ -0,0 +1,9 @@ |
|||
Template.userPage.onRendered(function (){ |
|||
this.subscribe("userById",Router.current().params._id) |
|||
}) |
|||
|
|||
Template.userPage.helpers({ |
|||
user: function (){ |
|||
return User.findOne(Router.current().params._id) |
|||
} |
|||
}) |
불러오는 중...
Reference in new issue