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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

從對象數(shù)組(php,laravel刀片)中獲取所有鍵x

從對象數(shù)組(php,laravel刀片)中獲取所有鍵x

PHP
阿晨1998 2021-05-07 14:13:29
數(shù)據(jù)庫表如下所示:數(shù)據(jù)庫中的“ extras”列存儲著一個看起來像這樣的對象數(shù)組:[{"id":92,"product_id":8966,"extra_type":"Extras","extra_name":"Olives"},{"id":93,"product_id":8966,"extra_type":"Extras","extra_name":"Ketchup"},{"id":92,"product_id":8966,"extra_type":"Extras","extra_name":"Olives"}]下面的代碼(來自Laravel刀片)返回對象數(shù)組。@foreach($item->orderedProducts as $op)<tr>     <td>         <span>{{ $op['extras'] }}</span><br>     </td></tr>@endforeach$ op返回以下內(nèi)容:{  "id": 171,  "product_id": 8966,  "order_id": 175,  "price": 11,  "count": 1,  "product_data": "{\"id\":8966,\"name\":\"Camera Br\\u00fbl\\u00e9e\",\"description\":\"Lorem ipsum dolor sit amet consectetur adipiscing elit etiam, conubia tempus sed dapibus augue gravida accumsan. Odio congue in blandit iaculis risus gravida parturient dictum quis rhoncus volutpat ornare tincidunt, dignissim ut pellentesque.\",\"price\":11,\"price_old\":null,\"category_id\":4584,\"created_at\":\"2019-03-17 14:59:56\",\"updated_at\":\"2019-04-17 16:37:03\",\"tax_group_id\":null,\"sort\":1,\"vendor_id\":null,\"option1\":null,\"option2\":null,\"option3\":null,\"option4\":null,\"option5\":null,\"option6\":null,\"images\":[\"http:\\/\\/localhost:8000\\/product_images\\/ElI9GImttc.jpg\"],\"formatted_price\":\"\\u00a311\",\"formatted_old_price\":\"0\",\"tax_value\":0,\"city_id\":null,\"restaurant_id\":null,\"product_images\":[{\"id\":9000,\"image\":\"\\/product_images\\/ElI9GImttc.jpg\",\"product_id\":8966,\"created_at\":\"2019-04-08 15:16:53\",\"updated_at\":\"2019-04-08 15:16:53\"}],\"tax_group\":null,\"category\":{\"id\":4584,\"name\":\"Random Things\",\"_lft\":1,\"_rgt\":2,\"parent_id\":null,\"created_at\":\"2018-11-09 13:15:01\",\"updated_at\":\"2019-04-17 16:47:21\",\"restaurant_id\":null,\"city_id\":null,\"category_image\":null,\"has_children\":0,\"image_url\":\"http:\\/\\/localhost:8000\\/category_images\\/a64be5a696402b0fe3649536ab6a49e4_1555519641.jpg\"},\"added\":true}",我想要達到的目的是從“ extras:”獲取(例如)“ extra_name”的所有值。所需的輸出應類似于:橄欖番茄醬橄欖
查看完整描述

3 回答

?
浮云間

TA貢獻1829條經(jīng)驗 獲得超4個贊

我認為這將鍛煉


@foreach($item->orderedProducts as $op)

<?php $array = stripslashes(json_encode($op->extras)) ?>

    <tr>

         <td>

             <span>

             @foreach($array as $value)

                 {{ $value['extra_name'] }}

             @endforeach

             </span><br>

         </td>

    </tr>

 @endforeach


查看完整回答
反對 回復 2021-05-21
?
慕慕森

TA貢獻1856條經(jīng)驗 獲得超17個贊

@foreach($item->orderedProducts as $op)

<tr>

    <td>

    @if ('Extras' == $op->extra_type)

         <span>{{ $op->extra_name }}</span><br>

    @endif

    </td>

</tr>

@endforeach


查看完整回答
反對 回復 2021-05-21
?
函數(shù)式編程

TA貢獻1807條經(jīng)驗 獲得超9個贊

您可以->在laravel中使用來訪問對象的值,請嘗試此操作


@foreach($item->orderedProducts as $op)

<tr>

 <td>

     <span>{{ $op->extra_name }}</span><br>

 </td>

</tr>

@endforeach


查看完整回答
反對 回復 2021-05-21
  • 3 回答
  • 0 關(guān)注
  • 165 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

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