加载自定义 Yii 组件
我正在尝试使用我创建的自定义类来发送邮件,这样我就可以保持控制器文件的精简。我创建了自定义类并将其放入组件文件夹中。然后我添加:
'sendMail' => array(
'class'=>'application.components.SendMail.',
),
在我的主配置文件的主要组件下面。
这应该允许我直接访问该类,正确吗?我尝试使用:
Yii::app()->SendMail->MailerConfirmation();
和:
Yii:app()->MailerConfirmation();
,但最终得到的只是错误。
谁能告诉我如何包含自定义组件?也许我做的这一切都是错的?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先应该是:
注意“SendMail”末尾没有点,而不是“SendMail.”。另外,此配置要求您在 protected/components 目录中拥有 php 文件 SendMail.php,该文件是一个名为“SendMail”的类,并且该组件扩展了 CApplicationComponent。组件 id 将使用较低的首字母,例如
Yii::app()->sendMail
并且这将返回“SendMail”类的实例。我不知道 MailerConfirmation 是什么,但如果这是 SendMail 对象的方法,那么您应该像Yii::app()->sendMail->MailerConfirmation()
一样访问它。没有帮助,那么请发布一些代码并发布您遇到的错误。
First it should be:
Notice the absence of dot in the end "SendMail" instead of "SendMail.". Also, this configuration expects that you have php file SendMail.php, in protected/components directory that is a class with name "SendMail" and that this component extends CApplicationComponent. The component id will be with lower first letter, eg
Yii::app()->sendMail
and this will return instance of "SendMail" class. I do not know what MailerConfirmation is, but if this is a method of SendMail object, then you should access it likeYii::app()->sendMail->MailerConfirmation()
If this doesn't help, then please post some code and post the errors you are getting.
请注意,如果您不打算在配置文件中设置任何组件属性或使用其他 CApplicationComponent 功能,并且您的配置文件包含默认值:
您可以将 SendMail.php 类放在组件目录中,它将通过以下方式调用它来自动加载:
然后通过以下方式调用您的方法:
如果您确实想使用 CApplicationComponent,您可以想看看此处 或 这里 提供了一些示例以及 Yii 教程。
Note that if you are not going to set any component properties in the config file or use other CApplicationComponent features and your config file includes the default:
You can put your SendMail.php class in the components directory and it will autoload by calling it via:
then call your methods via:
if you do want to use CApplicationComponent, you may want to look here or here for a couple examples, as well as the Yii tutorials.