ZF2:如何在控制器内创建模型的新实例

时间:2018-09-12 07:54:13

标签: php design-patterns dependency-injection zend-framework2 service-locator

我开始学习ZF2依赖注入的好处,并且对如何在控制器内部创建模型的新实例有些困惑。

我知道我可以使用:$ this-> getServiceLocator()-> get('Crumb'),但我已经读过它在控制器中使用serviceLocator被认为是反模式。

将这个问题变为现实:我有一个面包屑班和一个面包屑班。看起来类似于:

using (var selectModifiedCmd = new SqlCommand(selectModified, conn, trans))
                {
                    try
                    {
                        decimal qty, qtyPerUOM, weight, weightKg;
                        string no, binCode, binText, shelfNo, mainZone, sourceTu, destNo, cluster;
                        int lineNo, corridor, sortAsc, sortDesc, rowOrder;
                        short pricePerKg;

                        using (var reader = selectModifiedCmd.ExecuteReader())
                        {
                            while (reader.Read())
                            {
                               ........

                                using (var updateModifiedCmd = new SqlCommand(updateModified, conn, trans))
                                {
                                    ........

                                    updateModifiedCmd.ExecuteNonQuery();
                                }

                                using (var returnModifiedCmd = new SqlCommand(returnModified, conn, trans))
                                {
                                    returnModifiedCmd.Parameters.AddWithValue("no", no);
                                    returnModifiedCmd.Parameters.AddWithValue("lineNo", lineNo);

                                    returnModifiedCmd.ExecuteNonQuery();
                                }

                                trans.Commit();

                                Globals.WriteLog(MethodBase.GetCurrentMethod().Name, String.Format(logSuccess, no, lineNo, binCode, qty));
                            }
                        }
                    }
                    catch (SqlException ex)
                    {
                        var trace = new StackTrace(ex, true);
                        Globals.WriteLog(
                            MethodBase.GetCurrentMethod().Name,
                            ex.Message + " At line: " + trace.GetFrame(trace.FrameCount - 1).GetFileLineNumber());

                        try
                        {
                            trans.Rollback();
                        }
                        catch (Exception exRollback)
                        {
                            Globals.WriteLog("Rollback error: ", exRollback.Message);
                        }
                    }
                }

我很困惑如何创建Crumb实例。 如果遵循选项1,则无法使用工厂将任何依赖项注入Crumb。 如果遵循选项2,则使用serviceLocator,它是一种反模式。

我缺少明显的东西吗?

0 个答案:

没有答案