使用 CFWHEELS 在模型中添加自定义方法
Add a custom method in a Model using CFWHEELS
我正在尝试在我的一个 CFWheels 模型上添加自定义方法,但我无法执行此操作。我一直在阅读文档,但仍然没有找到答案。
User.cfc
component extends="Component" {
...
function getCustomSearch(){
...
}
...
}
我要换:
model("users").findAll(...)
至
model("users").getCustomSearch(...)
为了重构一些功能。
这可能吗?在那种情况下,我做错了什么?
感谢您的关注。
此致。
需要 model('user')
而不是 users
; Wheels 寻找与 models/User.cfc 文件匹配的单数变体。
我离开了我的电脑,当我回来时它正在工作。丹·罗伯茨说得对,有必要重装
感谢大家的帮助!
我正在尝试在我的一个 CFWheels 模型上添加自定义方法,但我无法执行此操作。我一直在阅读文档,但仍然没有找到答案。
User.cfc
component extends="Component" {
...
function getCustomSearch(){
...
}
...
}
我要换:
model("users").findAll(...)
至
model("users").getCustomSearch(...)
为了重构一些功能。
这可能吗?在那种情况下,我做错了什么?
感谢您的关注。
此致。
需要 model('user')
而不是 users
; Wheels 寻找与 models/User.cfc 文件匹配的单数变体。
我离开了我的电脑,当我回来时它正在工作。丹·罗伯茨说得对,有必要重装
感谢大家的帮助!