gpt4 book ai didi

javascript - 如何通过从另一个进程提供参数来执行文件

转载 作者:行者123 更新时间:2023-12-02 22:07:14 24 4
gpt4 key购买 nike

如何通过了解文件的位置和内容来提供来自其他程序的一些参数来运行/执行 Node 文件的实例。

当我从也在 Node (adonis js)上运行的 Web 应用程序添加设备时,它会创建一个带有提供的参数的设备,例如 device_name、type、lat、lng 等。当设备成功添加时,它会创建一个实例或副本添加设备时,以下代码应使用提供的参数自动启动。

需要使用给定参数启动的文件

   // c:/device/test.js

var mqtt = require('mqtt');
function UserModule() {
var client = mqtt.connect('mqtt://test.mosquitto.org');
client.on('connect', function () {
let latitude = 777
let lngitude = 999
setInterval(function() {
let device_data = {
'device_name':'{params.devcie_name}',
'topic_topic':'MyProject/{params.type_of_device}/{params.user_id}/{params.topic_name}',
'type':'GPS',
'data':{
'lat':'35.'+latitude++,
'lng':'-74.'+lngitude++,
'alt':22,
'acc':25.10101,
'name': 'my car2',
'type': 'car'
},
'status': 'OK'
}
client.publish(device_data.topic_topic, JSON.stringify(device_data));
console.log('data published for', device_data.device_name);
}, 1000);
});
}
module.exports = UserModule;

用于添加设备的 Controller

//app/controllers/http/devicecontroller.js

async store({ params, request, response, view, session, auth }) {
try {
const deviceData = request.only(['cat_id', 'device_name', 'type', 'device_type_id'])
deviceData.device_owner_id = auth.current.user.id
deviceData.is_deleted = 0
deviceData.is_active = 1
const device = new Device();

let rules = Config.get('rules.device')
let messages = Config.get('messages.device')

const validation = await validate(deviceData, rules, messages)
if (validation.fails()) {
console.log(JSON.stringify(validation.messages()))
session.flash({ type: 'danger', message: validation.messages()[0].message })
return response.redirect('back')
}

let dev = await deviceService.addDevice(deviceData);
session.flash({ type: 'success', message: 'Device added successfully' })
//here to run a code which execute that file
//sudo-code

File f = new File('c:/device/test.js')
let content = await f.readAll()

content = string.format(content, params1, params2, params3..)

f.content = content;
f.eecute()


return response.redirect('/dashboard/device-manage')
} catch (error) {
session.flash({ type: 'danger', message: error.message })
return response.redirect('back')
}
}

我每次添加设备时都执行代码,每次使用新参数,意味着使用新参数使用新实例执行同一文件。

最佳答案

要启动新进程,请使用 Node 包child_process

https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options

要将消息发送到该 child_process,请使用 child_process.fork

const cp = require('child_process');
const n = cp.fork(`${__dirname}/sub.js`);

n.on('message', (m) => {
console.log('PARENT got message:', m);
});

// Causes the child to print: CHILD got message: { hello: 'world' }
n.send({ hello: 'world' });

https://nodejs.org/api/child_process.html#child_process_subprocess_send_message_sendhandle_options_callback

关于javascript - 如何通过从另一个进程提供参数来执行文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59682083/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com