gpt4 book ai didi

javascript - 如何向函数主体之外的函数添加代码?

转载 作者:行者123 更新时间:2023-11-30 18:26:42 25 4
gpt4 key购买 nike

我想将代码添加到函数中,在函数之外,甚至可能在一个完全不同的 JS 文件中。这可能吗?我怎样才能做到这一点?这是代表我到目前为止所尝试的代码片段:

function myViewModel() {
var self = this;

this.firstName = ko.observable("Mike");
this.lastName = ko.observable("Rassel");

// this was where I was originally making the call
//myViewModel.fullName = ko.computed(function() {
// return self.firstName() + ' ' + self.lastName();
})
}

// this is where the error is happening
myViewModel.fullName = ko.computed(function() {
return self.firstName() + ' ' + self.lastName();

ko.applyBindings(new myViewModel());

更多代码可以查看this JFiddle .

最佳答案

这是在 Javascript 中向已定义的构造函数添加方法的方法。

myViewModel.原型(prototype).newFunctionName = function () {};

http://javascriptweblog.wordpress.com/2010/06/07/understanding-javascript-prototypes/

http://timkadlec.com/2008/01/using-prototypes-in-javascript/

关于javascript - 如何向函数主体之外的函数添加代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10649293/

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