加载自定义 Yii 组件

发布于 2024-12-01 00:46:39 字数 442 浏览 1 评论 0 原文

我正在尝试使用我创建的自定义类来发送邮件,这样我就可以保持控制器文件的精简。我创建了自定义类并将其放入组件文件夹中。然后我添加:

'sendMail' => array(
    'class'=>'application.components.SendMail.',
), 

在我的主配置文件的主要组件下面。

这应该允许我直接访问该类,正确吗?我尝试使用:

Yii::app()->SendMail->MailerConfirmation();

和:

Yii:app()->MailerConfirmation();

,但最终得到的只是错误。

谁能告诉我如何包含自定义组件?也许我做的这一切都是错的?

I am trying to use a custom class I have created to send out mail so I can keep the controller files thin. I created my custom class and put it in the components folder. I then added:

'sendMail' => array(
    'class'=>'application.components.SendMail.',
), 

underneath main components in my main config file.

This should allow me to access the class directly correct? I try using:

Yii::app()->SendMail->MailerConfirmation();

and:

Yii:app()->MailerConfirmation();

and all I end up with is errors.

Can anyone tell me how I include a custom component? Maybe I am doing this all wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

善良天后 2024-12-08 00:46:39

首先应该是:

'sendMail' => array(
    'class'=>'application.components.SendMail',
), 

注意“SendMail”末尾没有点,而不是“SendMail.”。另外,此配置要求您在 protected/components 目录中拥有 php 文件 SendMail.php,该文件是一个名为“SendMail”的类,并且该组件扩展了 CApplicationComponent。组件 id 将使用较低的首字母,例如 Yii::app()->sendMail 并且这将返回“SendMail”类的实例。我不知道 MailerConfirmation 是什么,但如果这是 SendMail 对象的方法,那么您应该像 Yii::app()->sendMail->MailerConfirmation() 一样访问它

。没有帮助,那么请发布一些代码并发布您遇到的错误。

First it should be:

'sendMail' => array(
    'class'=>'application.components.SendMail',
), 

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 like Yii::app()->sendMail->MailerConfirmation()

If this doesn't help, then please post some code and post the errors you are getting.

我早已燃尽 2024-12-08 00:46:39

请注意,如果您不打算在配置文件中设置任何组件属性或使用其他 CApplicationComponent 功能,并且您的配置文件包含默认值:

'import'=>array(
    'application.models.*',
    'application.components.*',
),

您可以将 SendMail.php 类放在组件目录中,它将通过以下方式调用它来自动加载:

$mailer = new SendMail();

然后通过以下方式调用您的方法:

$mailer->MailerConfirmation();

如果您确实想使用 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:

'import'=>array(
    'application.models.*',
    'application.components.*',
),

You can put your SendMail.php class in the components directory and it will autoload by calling it via:

$mailer = new SendMail();

then call your methods via:

$mailer->MailerConfirmation();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文