简单的问题:
我有一个服务类(比方说helpersService
)和一个方法def constructURI(params)
。
如何从模板 View 调用此方法。
我尝试了以下代码,但未成功
<% def helpersService = new HelpersService() // or def helpersService
%>
<img src="${helpersService. constructURI(params)}"/>
但是我得到以下结果:
No signature of method: com.HelpersService. constructURI() is applicable for argument types...
或(如果我使用
def helpersService
)Cannot invoke method constructURI() on null object
有任何想法吗?
最佳答案
服务不能在 View 内部使用。您可以创建一个TagLib,在这里您可以通过依赖注入(inject)获得对服务的引用。