gpt4 book ai didi

javascript - 如何从 Node.js 服务器将函数传递给客户端

转载 作者:太空宇宙 更新时间:2023-11-04 02:47:37 25 4
gpt4 key购买 nike

全部:

我想做的是:

在 Node 服务器端:

var fn = function(){
alert("hello");
}

我想将此函数发送到客户端(目前使用AngularJS,但只要能解决这个问题就没关系),并将其绑定(bind)到按钮单击事件。这样,当单击该按钮时,我可以弹出警报窗口。

谢谢

最佳答案

所以,像这样:

// Predefined functions
var allowedFunctions = {
'f1': function () {alert('Called f1');},
'f2': function () {alert('Called f2');},
'f3': function () {alert('Called f3');},
};

// This comes from the server
var callThisOne = 'f2';

// Here's how you call it now
allowedFunctions[callThisOne]();

关于javascript - 如何从 Node.js 服务器将函数传递给客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28117733/

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