我在Express JS API端点中有一个简单的条件,在该端点中,我使用typeof来检查输入的值是否为字符串。
if (!name || typeof name != 'string') {
res.status(400).json({
success: false,
message: 'Please enter the meal name correctly! (Hint: name must be a string)'
});
}
问题在于它不断抛出此错误:UnhandledPromiseRejectionWarning: ReferenceError: string is not defined
。我的代码有什么问题?
谢谢。