有A,B兩個模組,A模組資料庫中內容修改要讓B模組的資料跟著一起修改,A模組還可以讀取B模組的一些資料。
該如何設計才能最大程度降低模組間的耦合性?
有A,B兩個模組,A模組資料庫中內容修改要讓B模組的資料跟著一起修改,A模組還可以讀取B模組的一些資料。
該如何設計才能最大程度降低模組間的耦合性?
把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();
新增一個services層用來處理業務邏輯。
就不會出現你這個跨模組呼叫的問題了。因為services層跟模組無關。