MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Làm cách nào để tìm nạp cơ sở dữ liệu drom bản ghi trong chế độ xem chỉnh sửa Trong Laravel?

Bạn có thể kiểm tra trong foreach của mình nếu giá trị của nameOfDepartment khớp với một từ người dùng của bạn.

<div class="form-group">
    <label class="col-md-12">Department</label>
    <div class="col-md-12">
        <select class="custom-select form-control col-md-11" id="department" name="department">
            @foreach($listDepartment as $departmentList)
                @if ($profile->personal_profile['department'] == $departmentList->nameOfDepartment)
                    <option value="{{$departmentList->nameOfDepartment}}" selected="selected">{{$departmentList->nameOfDepartment}}</option>
                @else
                    <option value="{{$departmentList->nameOfDepartment}}">{{$departmentList->nameOfDepartment}}</option>
                @endif
            @endforeach
        </select>
    </div>
</div>

Đối với trường lựa chọn thứ hai của bạn, hãy tạo một mảng với tất cả các giá trị có thể có trong bộ điều khiển của bạn.

$interview = [
    '' => '--- Select Interciew Mode ---',
    'telephonic' => 'Telephonic',
    'facetoface' => 'Face 2 face',
    'skype' => 'Skype'
];

Sau đó, bạn có thể thực hiện tương tự như lựa chọn trước đó của mình:

<select class="custom-select form-control col-md-12" name="mode" id="mode" required>
    @foreach($interview as $key => $name)
        @if ($profile->personal_profile['interview'] == $key)
            <option value="{{ $key }}" selected="selected">{{ $name }}</option>
        @else
            <option value="{{ $key }}">{{ $name }}</option>
        @endif
   @endforeach
</select>



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Kết quả truy vấn Mongoose .find chứa siêu dữ liệu truy vấn? không thể chỉ chiếu thủ công từng thuộc tính của bộ sưu tập, làm thế nào để chỉ lấy tài liệu?

  2. Trong MongoDB mapreduce, làm cách nào để làm phẳng đối tượng giá trị?

  3. Java MongoDB nhận giá trị cho tài liệu con

  4. làm cách nào để tôi có thể tự động tăng một trường trong mongodb bằng cách sử dụng mã java?

  5. Chèn tài liệu mới bằng InsertOneAsync (.NET Driver 2.0)