我似乎遇到了节点/节点名称空间冲突。
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错误?
由于
答案 0 :(得分:2)
您缺少名称空间声明。试试这个:
# Foo.thrift file content
namespace js Foo
...
struct Error {
1: i32 code,
2: string message
}
...
然后你的节俭物体将是Foo.Error
。