如何使用 DarrylDecode 购物车功能将我的购物车数据存储到 Laravel 中的数据库

我试图通过制作一个小型电子商务网站项目和实现购物车功能来学习 Laravel,我遇到了 DarrylDecode 购物车功能(https://github.com/darryldecode/laravelshoppingcart

但很快我意识到用户的购物车数据存储在会话中,每当用户注销并再次登录时,购物车数据就会丢失。用户也无法从其他浏览器或其他设备访问购物车项目,因为它临时保存在特定浏览器的会话中。我想将相同的数据存储到数据库中并从那里访问它。关于将数据存储在数据库中的文档解释中几乎没有关于此的内容,但还不是很清楚。谁能告诉我如何实现这一目标


不负相思意
浏览 133回答 2
2回答

烙印99

Darryldecode 购物车是一种在您的项目中实现购物车功能的双向方法。在我的例子中,我正在尝试对心愿单使用持久存储,这样当用户登录时,他们仍然会看到他们的心愿单项目。首先要做的是通过运行命令创建迁移php artisan make:migration create_wishlist_storage_table这将在 database/migration 目录中创建迁移文件,打开文件,并用这些代码行替换整个代码块。<?phpuse Illuminate\Database\Migrations\Migration;use Illuminate\Database\Schema\Blueprint;use Illuminate\Support\Facades\Schema;class CreateWishlistStorageTable extends Migration{/**&nbsp;* Run the migrations.&nbsp;*&nbsp;* @return void&nbsp;*/&nbsp;public function up(){&nbsp; &nbsp; Schema::create('wishlist_storage', function (Blueprint $table) {&nbsp; &nbsp; &nbsp; &nbsp; $table->string('id')->index();&nbsp; &nbsp; &nbsp; &nbsp; $table->longText('wishlist_data');&nbsp; &nbsp; &nbsp; &nbsp; $table->timestamps();&nbsp; &nbsp; &nbsp; &nbsp; $table->primary('id');&nbsp; &nbsp; });}/**&nbsp;* Reverse the migrations.&nbsp;*&nbsp;* @return void&nbsp;*/public function down(){&nbsp; &nbsp; Schema::dropIfExists('wishlist_storage');}}之后,运行php artisan migrate命令。这将在您的数据库中创建一个 wishlist_storage 表,其中包含列 id、wishlist_data 和时间戳。接下来是创建一个雄辩的模型来通过运行命令来处理我们的迁移php artisan make:model DatabaseStorageModel。打开应用程序目录中的 DatabaseStorageModel.php 文件,并将整个代码块替换为以下代码行。<?phpnamespace App;use Illuminate\Database\Eloquent\Model;class DatabaseStorageModel extends Model{///**&nbsp;* Override eloquent default table&nbsp;* @var string&nbsp;*/protected $table = 'wishlist_storage';/**&nbsp;* The attributes that are mass assignable.&nbsp;*&nbsp;* @var array&nbsp;*/protected $fillable = [&nbsp; &nbsp; 'id', 'wishlist_data',];/**&nbsp;* Mutator for wishlist_column&nbsp;* @param $value&nbsp;*/public function setWishlistDataAttribute($value){&nbsp; &nbsp; $this->attributes['wishlist_data'] = serialize($value);}/**&nbsp;* Accessor for wishlist_column&nbsp;* @param $value&nbsp;* @return mixed&nbsp;*/public function getWishlistDataAttribute($value){&nbsp; &nbsp; return unserialize($value);}}接下来要做的是创建一个新类以注入我们的购物车实例。为此,使用您的应用命名空间创建一个名为 DatabaseStorage.php 的文件并粘贴这行代码。<?phpnamespace App;use Darryldecode\Cart\CartCollection;class DatabaseStorage {public function has($key){&nbsp; &nbsp; return DatabaseStorageModel::find($key);}public function get($key){&nbsp; &nbsp; if($this->has($key))&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; return new CartCollection(DatabaseStorageModel::find($key)->wishlist_data);&nbsp; &nbsp; }&nbsp; &nbsp; else&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; return [];&nbsp; &nbsp; }}public function put($key, $value){&nbsp; &nbsp; if($row = DatabaseStorageModel::find($key))&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; // update&nbsp; &nbsp; &nbsp; &nbsp; $row->wishlist_data = $value;&nbsp; &nbsp; &nbsp; &nbsp; $row->save();&nbsp; &nbsp; }&nbsp; &nbsp; else&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; DatabaseStorageModel::create([&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'id' => $key,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'wishlist_data' => $value&nbsp; &nbsp; &nbsp; &nbsp; ]);&nbsp; &nbsp; }}}这取决于您命名文件和类的方式,但我正在解释我是如何做到的。最后一步是使 DatabaseStorage 类成为我们购物车的默认存储。运行命令php artisan vendor:publish --provider="Darryldecode\Cart\CartServiceProvider" --tag="config"在config目录下发布库配置文件名shopping_cart.php。打开 shopping_cart.php 文件并替换'storage'=>null,和'storage' => \App\DatabaseStorage::class,您现在可以按照正常程序在控制器中使用手推车。

千巷猫影

当我使用它时,我发现购物车现在对所有人公开。如果一个用户删除了该项目,则该项目将被完全从购物车中删除,而拥有相同项目的其他用户则看不到这一点。
打开App,查看更多内容
随时随地看视频慕课网APP