助手应该寻找主题标签并使它们成为路线/链接。相反,它使文本不显示。我该如何解决?
这是代码:
车把.js
Handlebars.registerHelper('hashtag', function(posttext) {
posttext.html();
posttext = posttext.replace(/#(\w+)/g, "<a href='https://www.google.com/?q=$1' target='_blank'>$&</a>");
posttext.html(posttext);
});
postidem.js
<h3 class="text">{{hashtag title}}</h3>
<p class="text">{{hashtag posttext}}</p>