1

这是我的welcome.blade.php

@extends('layouts.app')
@section('content')
<x-frontpage></x-frontpage>
@endsection

这是我的frontpage.blade.php

<h1 class="text-center">{{ $product->name }}</h1>

这是我的错误

$product is not passed to welcome.blade.php
4

1 回答 1

3

您应该在x-frontpage刀片组件中添加一个道具,否则它将无法接收它。

这是一个例子:

<!-- frontpage.blade.php -->

@props(['product'])

<h1 class="text-center">{{ $product->name }}</h1>
<!-- welcome.blade.php -->

@extends('layouts.app')
@section('content')
<x-frontpage :product="$product"></x-frontpage>
@endsection

还要确保你welcome.blade.php$product变量。

这里有更多资源:

https://laravel.com/docs/7.x/blade

https://laravel-livewire.com/docs/rendering-components#render-method

于 2020-08-28T10:56:59.380 回答