模型胶入门问题
我在我的项目下的 wwwroot 中运行 Model-Glue (& ColdSpring)。我遇到的问题是,当我广播消息以调用控制器中的方法时,会调用不同文件夹(不同项目)中的另一个同名方法。我该如何防止这种情况发生?
I have Model-Glue (& ColdSpring) running in my wwwroot under my project. The problem I have is when I broadcast a message to call a method in my Controller, what happens is another method of the same name in a different folder(different project) gets called. How do i prevent this from happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 ColdSpring 配置中,将调试值设置为 true;重新加载您的应用程序;看看页面底部吐出的一大堆东西。这会告诉您 ModelGlue 正在做什么。这对于诊断您所描述的行为非常有帮助。
in your coldspring config, set the debug value to true; reload your app; look at the big table of stuff that gets spit out at the bottom of your page. That'll tell you what ModelGlue is doing. It's very helpful for diagnosing behavior such as you describe.
这可能是由于一些复制和粘贴错误造成的。
搜索您刚刚广播的消息,看看是否有超过 1 个控制器正在处理/响应该消息。应位于
...
内。It may be caused by some copy and paste mistakes.
Do a search on the message you just broadcast, and see if there are more than 1 controllers handling/responding to the message. Should be inside
<message-listener>...</message-listener>
.