第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

以舊值顯示 Blade Laravel 中不同輸入字段的數(shù)據(jù)庫中的用戶現(xiàn)有數(shù)據(jù)

以舊值顯示 Blade Laravel 中不同輸入字段的數(shù)據(jù)庫中的用戶現(xiàn)有數(shù)據(jù)

PHP
HUX布斯 2023-07-21 16:11:54
當(dāng)我在編輯之前嘗試在輸入字段中顯示現(xiàn)有數(shù)據(jù)時(shí),收到此錯(cuò)誤“嘗試獲取非對象的屬性“帖子”(視圖:E:\Projects\htdocs\zipad\resources\views\posts\edit.blade.php)”但是,當(dāng)我嘗試下面的代碼時(shí),它工作得很好Blade 中的工作代碼    @foreach($user->posts as $post)<div class="col-4"> {{$post->about }}</div>@endforeach編輯.blade.php    <form action="/p" enctype="multipart/form-data" method="post">@csrf<div class="col-8 offset-2"><div class="form-group row">                            <label for="about" class="col-md-4 col-form-label text-md-right">{{ __(' post about') }}</label>                            <div class="col-md-6">                                <input id="about" type="text" class="form-control @error('about') is-invalid @enderror" name="about"  value="{{ old('about') ?? $user->posts->about }}" required autocomplete="about" autofocus>                                @error('about')                                    <span class="invalid-feedback" role="alert">                                        <strong>{{ $message }}</strong>                                    </span>                                @enderror                            </div>                            <label for="image" class="col-md-4 col-form-label text-md-right">{{ __(' post image') }}</label>                            <input type="file", class="form-control-file" id ="image" name="image">                            @error('image')                                    <div class="invalid-feedback" role="alert">                                        <strong>{{ $message }}</strong> </div>                                                                    @enderror                                <div class="btn btn-primary">                                <button> add img post</button>                                </div>                        </div></div>    </form>后置控制器public function edit(User $user){    return view('posts.edit', compact('user'));}
查看完整描述

1 回答

?
蝴蝶不菲

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

當(dāng)您迭代時(shí),$user->posts它會(huì)起作用,因?yàn)槟谠L問每個(gè)帖子并渲染它。


但在您posts.edit使用時(shí)$user->posts->about,它不知道哪篇文章是關(guān)于哪篇文章的。


解決方案: 您必須像您提供的工作代碼一樣迭代該用戶的所有帖子。


.....

@foreach($user->posts as $post)

<label for="about" class="col-md-4 col-form-label text-md-right">{{ __(' post about') }}</label>

<div class="col-md-6">

    <input id="about" type="text" class="form-control @error('about') is-invalid 

    @enderror" name="about"  value="{{ old('about') ?? $post->about }}" 

    required autocomplete="about" autofocus>

    @error('about')

    <span class="invalid-feedback" role="alert">

    <strong>{{ $message }}</strong>

    </span>

    @enderror

</div>

@endforeach

....


查看完整回答
反對 回復(fù) 2023-07-21
  • 1 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)