0
Scout.models.Equipment = Backbone.RelationalModel.extend({
  schema:{
    asset_number:{ type:'Text' },
    notes: 'TextArea',
    tag:{ type: 'Text', validators: ['required']}
  },
  defaults: {
    id: null,
    name: null,
  }
});

I want to add a legend to the scheme but the examples dont have a legend.

4

1 回答 1

1

虽然主要示例没有,但代码中有一些

这里

例如

如果您查看它,它正在页面中工作(它也会运行测试)

于 2013-09-04T19:39:49.140 回答