topic = $topic; } /** * Execute the job. * * @return void */ public function handle() { // 请求百度 API 接口进行翻译 $slug = app(SlugTranslateHandler::class)->translate($this->topic->title); // 为了避免模型监控器死循环调用,我们使用 DB 类直接对数据库进行操作 \DB::table('topics')->where('id', $this->topic->id)->update(['slug' => $slug]); } }