2016-10-26 11:07发布
有A,B两个模块,A模块数据库中内容修改要使B模块的数据跟着一起修改,A模块还可以读取B模块的一些数据。
该如何设计才能最大程度降低模块间的耦合性?
新增一个services层用来处理业务逻辑。就不会出现你这个跨模块调用的问题了。因为services层跟模块无关。
把Customer当成A,Order当成B,这个例子中就修改了B中的值。$customer = Customer::findOne(123);$order = new Order();$order->subtotal = 100;// ...
// setting the attribute that defines the "customer" relation in Order$order->customer_id = $customer->id;$order->save();
最多设置5个标签!
付费偷看金额在0.1-10元之间
新增一个services层用来处理业务逻辑。
就不会出现你这个跨模块调用的问题了。因为services层跟模块无关。
把Customer当成A,Order当成B,这个例子中就修改了B中的值。
$customer = Customer::findOne(123);
$order = new Order();
$order->subtotal = 100;
// ...
// setting the attribute that defines the "customer" relation in Order
$order->customer_id = $customer->id;
$order->save();
一周热门 更多>