有什么方法可以在 child_process 生成时设置超时吗?

Is there any way to set timeout at child_process spawn?

有什么方法可以在 child_process 生成时设置超时选项?

这是我的代码。但我认为这行不通...... 当我删除它时: , { timeout: 100 * 60 } ,它起作用了。

const { spawn } = require('child_process')

function spawnPython() {
  const job2 = new CronJob({
    cronTime: '36 17 * * *',
    onTick() {
      const smartstoreReview = spawn(
        'python3', ['smartstore_review.py'], { timeout: 100 * 60 }
      )
.
.
.

来自评论的简单问题:

他们希望 timeout 设置“运行 6 秒”,而不是“运行 6 秒”(即超时)