NodeJS:从同一文件中的另一个函数内部调用函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NodeJS:从同一文件中的另一个函数内部调用函数相关的知识,希望对你有一定的参考价值。
我有NodeJS程序。
在一堂课中,我有各种实用方法。一个函数safeGithubPush调用safeString,同一类中的另一个函数
module.exports =
safeString(stringToCheck)
console.log(validator.isAscii(stringToCheck), validator.matches(stringToCheck, /^((\w)*[-.]?(\w)*)*$/))
return (
validator.isAscii(stringToCheck) &&
validator.matches(stringToCheck, /^((\w)*[-.]?(\w)*)*$/)
);
,
safeGithubPush(currentJob)
if (
!currentJob ||
!currentJob.payload ||
!currentJob.payload.repoName ||
!currentJob.payload.repoOwner ||
!currentJob.payload.branchName
)
this.logIn(
currentJob,
`$' (sanitize)'.padEnd(15)failed due to insufficient job definition`
);
throw invalidJobDef;
if (
this.safeString(currentJob.payload.repoName) &&
this.safeString(currentJob.payload.repoOwner) &&
this.safeString(currentJob.payload.branchName)
)
return true;
throw invalidJobDef;
,
虽然this.logIn()是实用程序类中的另一个func,但工作正常,但出现safeString的错误:
Error caught by first catch: TypeError: this.safeString is not a function
我关注了a solution offer by another SO post:
safeString: function(stringToCheck)
...
safeGithubPush(currentJob)
...
if (
this.safeString(currentJob.payload.repoName) &&
this.safeString(currentJob.payload.repoOwner) &&
this.safeString(currentJob.payload.branchName)
)
return true;
但是这也得到一个TypeError: this.safeString is not a function
。
我没有使用箭头功能,它是the explanation for this error on a different SO post
答案
我将重组此代码。您说这些是实用程序函数,这使我认为您实际上并不需要考虑this
来构造它们。
而不是在定义时将它们全部附加到module.exports
,而是在外部定义它们并直接引用您要使用的功能,然后将它们附加到exports
,以便其他模块可以使用这些功能:
function safeString(stringToCheck)
return true;
function safeGithubPush(currentJob)
if (!safeString("some"))
throw new Error("Not safe");
return true;
module.exports =
safeString,
safeGithubPush
;
以上是关于NodeJS:从同一文件中的另一个函数内部调用函数的主要内容,如果未能解决你的问题,请参考以下文章
我想从同一个 dart.file 中的另一个类中调用基于函数的小部件中的值到 Text 小部件中
如何从Python中的另一个函数调用函数内的函数? [重复]
我可以从 C# 中同一类的另一个构造函数调用重载构造函数吗?