【发布时间】:2023-03-07 09:32:01
【问题描述】:
Route::get('/', function () {
$tweets = Tweet::all();
return view('welcome', ['tweets' => $tweets]);
});
我正在使用 mongodb 制作一个 laravel 应用程序。
当我转到“/”时,我在 mongod 终端中收到一个错误,上面写着
AssertionException handling request, closing client connection: 10304 Client Error: Remaining data too small for BSON object
这是我的推文模型(在 App\Tweet 中):
namespace App;
use Jenssegers\Mongodb\Model as Eloquent;
class Tweet extends Eloquent {
protected $collection = 'tweets_collection';
}
【问题讨论】:
标签: php mongodb laravel-5 bson