刚看到下nodeclub的源码里的模板 /views/topic/abstract.html 是这个样子
<div class='user_avatar block'>
<% if(topic.reply) {%>
<a href="/user/<%= topic.reply.author.name %>">
<img src="<%= topic.reply.author.avatar_url %>"
title="<%= topic.reply.author.name %>"
/>
</a>
<% } %>
...
</div>
看到 /user/<%= topic.reply.author.name %> 这里有点迷惑,topic的model里定义的是author_id,模板是怎么有author这个属性的?
望高手解答。