5

我正在尝试将数据插入 Azure 表,但所有内容都转换为字符串。

例如,我正在插入数字/布尔值

var test={ PartitionKey : '4', RowKey : '2', foo: 4, bar: true };
tableService.insertEntity('mytable', test, ...);

tableService.queryEntity('mytable', '4', '2', ...);

返回

{ id: 'http://127.0.0.1:10002/devstoreaccount1/identid(PartitionKey=\'4\',RowKey=\'2\')',
  link: 'identid(PartitionKey=\'4\',RowKey=\'2\')',
  updated: '2012-12-12T10:26:44Z',
  etag: 'W/"datetime\'2012-12-12T10%3A26%3A44.547Z\'"',
  PartitionKey: '4',
  RowKey: '2',
  Timestamp: '2012-12-12T10:20:44.897Z',
  foo: '4',
  bar: 'true' }

如何指定数据类型?


好的,刚刚在 SDK 中看到您可以指定数据类型

var test={ PartitionKey : '4', RowKey : '2', 
  foo: { '@': { type: 'Edm.Int32' }, '#': 4 } };

但是是否有任何辅助函数可以自动添加类型?

4

2 回答 2

6

由于 SDK 似乎不包含任何有用的东西,我现在写了这些:

function azType(type, v) { return { "@": { type: type }, "#": v }; }
function azBool(v) { return azType("Edm.Boolean", v); }
function azBinary(v) { return azType("Edm.Binary", v); }
function azByte(v) { return azType("Edm.Byte", v); }
function azDateTime(v) { return azType("Edm.DateTime", v); }
function azDateTimeOffset(v) { return azType("Edm.DateTimeOffset", v); }
function azDecimal(v) { return azType("Edm.Decimal", v); }
function azDouble(v) { return azType("Edm.Double", v); }
function azGuid(v) { return azType("Edm.Guid", v); }
function azInt64(v) { return azType("Edm.Int64", v); }
function azInt32(v) { return azType("Edm.Int32", v); }
function azInt16(v) { return azType("Edm.Int16", v); }
function azSByte(v) { return azType("Edm.SByte", v); }
function azSingle(v) { return azType("Edm.Single", v); }
function azString(v) { return azType("Edm.String", v); }
function azTime(v) { return azType("Edm.Time", v); }

如在

var test={ PartitionKey : '4', RowKey : '2', foo: azInt32(4) };

我不知道他们为什么要更改它,但从 0.6.10 开始,需要替换 azType 函数:

function azType(type, v) { return { "$": { type: type }, "_": v }; }
于 2012-12-12T15:07:08.797 回答
1

根据这里,表服务数据模型仅支持这 8 种类型:

  • Edm.Binary
  • Edm.布尔
  • 日期时间
  • Edm.Double
  • Edm.Guid
  • Edm.Int32
  • Edm.Int64
  • 编辑字符串

请注意对象中的 id 属性:

{ PartitionKey : '4', RowKey : '2', id: azInt32(4) };

如果您尝试这样做,错误消息就不那么明显了:

Error inserting : { [Error: [object Object]] code: 'PropertiesNeedValue', message:{ _: 'The values are not specified for all properties in the entity...','$': { 'xml:lang': 'en-US' } } }

于 2013-06-09T14:16:10.530 回答