在开发CONNECT软件包时,如何以编程方式向另一个节点添加呼叫?
答案 0 :(得分:1)
您可以通过javascript API轻松做到这一点:
const platform = require('connect-platform');
platform.call('/your-path', {
paramA: "some-value",
//
// all other parameters you want to pass. if there are none, leave this empty.
//
});
查看本指南,以获取有关以下内容的更多信息: https://medium.com/connect-platform/inline-coding-in-connect-platform-534fce3c8cdf