按照using jsonix-schema-compiler的说明,我成功获得了xsd文件的映射对象;总结的内容是:
var IdentPerson_Module_Factory = function () {
var IdentPerson = {
name: 'IdentPerson',
defaultElementNamespaceURI: 'http:\/\/www.some.domain.de\/mynamespace',
typeInfos: [{
....
....
}],
elementInfos: [{
elementName: 'Person',
typeInfo: '.Person'
}]
};
return {
IdentPerson: IdentPerson
};
};
现在我想通过使用jsonix和上面的json-mapping-object生成一个xml-String:
var context = new Jsonix.Context([IdentPerson]);
var marshaller = context.createMarshaller();
var xmldoc = marshaller.marshalString(myJsonString);
myJsonString的第一行如下:
{ Person:
{ aliasName:
{ titel: '',
namenssuffix: '',
familyname: [Object],
.....
.....
}
结束错误:
Message: Element [Person] is not known in this context, could not determine its type.
Stack: Error: Element [Person] is not known in this context, could not determine its type.
at Object.Jsonix.Binding.Marshalls.Element.Jsonix.Class.marshalElement (/home/datarocket/datarocket.hub/src/node_modules/jsonix/jsonix.js:1881:10)
我想这是因为myJsonString中缺少命名空间?如果是这样,我该如何解决?提前致谢;
答案 0 :(得分:0)
您的映射指定了命名空间,但您的JSON对象却没有。
尝试:
var context = new Jsonix.Context(mappings, {
namespacePrefixes: {
"http://www.some.domain.de/mynamespace": "tns"
}
});
{ 'tns:Person': ... }
或者:
var context = new Jsonix.Context(mappings, {
namespacePrefixes: {
"http://www.some.domain.de/mynamespace": ""
}
});
{ Person: ... }
请参阅simplified mapping style上的文档,它提供了这种情况的提示。
免责声明:我是Jsonix的作者。