Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

अद्यतन करते समय yii2 में सरणी वस्तु से बहु चयन मूल्य कैसे सेट करें

यह एक मॉडल वर्ग का एक उदाहरण कोड है Permit जिसमें एक many to many है Activity . के साथ संबंध PermitActivity . के माध्यम से (पिवट टेबल मॉडल)।

मॉडल क्लास गतिविधि

public class Permit extends \yii\db\ActiveRecord {
    public $activities_ids;
    ...
    public function rules() {
        return [
            ...
            [['activities_ids'], 'safe'],
            ...
        ];
    }
    ...
    // Method called after record is saved, be it insert or update.
    public function afterSave($insert, $changedAttributes) {
        // If this is not a new record, unlink all records related through relationship 'activities'
        if(!$this->isNewRecord) {
            // We unlink all related records from the 'activities' relationship.
            $this->unlinkAll('activities', true);
            // NOTE: because this is a many to many relationship, we send 'true' as second parameter
            // so the records in the pivot table are deleted. However on a one to many relationship
            // if we send true, this method will delete the records on the related table. Because of this,
            // send false on one to many relationships if you don't want the related records deleted.
        }

        foreach($this->activities_ids as $activity_id) {
            // Find and link every model from the array of ids we got from the user.
            $activity = Activity::findOne($activity_id);
            $this->link('activities', $activity);
        }

        parent::afterSave($insert, $changedAttributes);
    }
    ...
    // Declare relationship with Activity through the pivot table permitActivity
    public function getActivities(){
        return $this->hasMany(Activitiy::className(), ['id' => 'activity_id'])
            ->viaTable('permitActivity',['permit_id' => 'id']);
    }
    ...
    public function afterFind(){
        parent::afterFind();
        $this->activities_id = ArrayHelper::getColumn($this->activities, 'id');
    }
}

इस तरह, पिवट टेबल का उपयोग करके संबंध बनाने और अपडेट करने के लिए मॉडल वर्ग जिम्मेदार है।

सबसे महत्वपूर्ण बात यह है कि संबंध विधि को सही ढंग से घोषित किया जाए।

संपादित करें

यह kartikv\widgets\Select2 का उपयोग करके दृश्य का एक उदाहरण है . मैं वास्तव में नहीं जानता कि ड्रॉपडाउनलिस्ट एकाधिक चयन का समर्थन करता है, हालांकि Select2 में कई उपयोगी सुविधाएं हैं जिन्हें मैं आमतौर पर अन्य विकल्पों पर उपयोग करता हूं।

echo $form->field($model, 'activities')->widget(Select2::classname(), [
    'data' => $data,
    'options' => [
        'placeholder' => '...'
    ],
    'pluginOptions' => [
        'allowClear' => true,
        'multiple' => true,
    ],
]);



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Google Apps स्क्रिप्ट, JDBC और MySQL दिनांक के साथ काम नहीं करता है 0000-00-00

  2. पेजिंग के साथ बड़ी संख्या में डेटाबेस प्रविष्टियों को संसाधित करना समय के साथ धीमा हो जाता है

  3. उलटा SQL चयन - उन कर्मचारियों को खोजें जिन्होंने दिनांक सीमा के बीच कोल्ड कॉल नहीं किया

  4. क्या मुझे जावा में अपने सभी डेटाबेस इंसर्ट के लिए रेडीस्टेडमेंट का उपयोग करना चाहिए?

  5. OpenJDK 11 में माइग्रेट करना, MySql कनेक्टर का कौन सा संस्करण java 11 के लिए अनुकूल है?