美好的一天。我最近了解了laravel。然后,我试图从数据库中获取数据(我使用Sqlsrv)但是我遇到了错误
htmlspecialchars()期望参数1为字符串,给定对象 (查看:D:\ xampp \ htdocs \ boby \ resources \ views \ welcome.blade.php)
这是我的剧本
路由/ web.php
Route::get('/', function () {
$datauser = DB::table('users')->get();
return view('welcome',compact('datauser'));
});
我的观点是这样的(如welcome.blade.php)
<!doctype html>
<html lang="{{ config('app.locale') }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color: #636b6f;
font-family: 'Raleway', sans-serif;
font-weight: 100;
height: 100vh;
margin: 0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 10px;
top: 18px;
}
.content {
text-align: center;
}
.title {
font-size: 84px;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 12px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
</style>
</head>
<body>
<ul>
@foreach ($datauser as $user)
<li> {{ $user }} </li>>
@endforeach
</ul>
</body>
</html>
怎么能处理这个错误?提前谢谢
答案 0 :(得分:2)
您无法显示此类对象。您需要在显示时获取属性。
<li> {{ $user->id }} </li>>
<li> {{ $user->name }} </li>>
<li> {{ $user->email }} </li>>
答案 1 :(得分:0)
您可以使用{{}}
来显示对象。
在foreach
中,$user
是一个对象,
如果您想要显示用户的电子邮件,请使用{{ $user->email }}