我似乎遇到了节点/节俭命名空间冲突。
Foo.thrift
...
struct Error {
1: i32 code,
2: string message
}
...
通过thrift --gen js:node Foo.thrift
(thrift v0.9.0)生成以下文件
Foo_types.js
...
Error = module.exports.Error = function(args) {
this.code = null;
this.message = null;
if (args) {
if (args.code !== undefined) {
this.code = args.code;
}
if (args.message !== undefined) {
this.message = args.message;
}
}
};
Error.prototype = {};
Error.prototype.read = function(input) {
...
我在节点中包含模块
var FooTypes = require('./../gen-nodejs/Foo_types')
我似乎遇到了与 javascript 的 Error 对象的命名空间冲突
callback(new Error("Couldn't find profile"));
在回调中,它显示我有一个对象,它带有code
一个message
包含“消息”的普通旧 JS 错误,即使我没有要求FooTypes.Error
.
https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Error
有没有其他人遇到过这个?如何引用普通的 JS 错误?
谢谢