sails 属性中的 'example' 选项是什么意思?
What does 'example' option in a sails attribute mean?
在SailsJS中您可以定义模型并为其提供属性。此框架还为您提供了一个 Web App 代码生成器,其中包含一个模型:User.js.
为该用户生成的许多属性都有一个名为示例的选项,例如:
email: {
type: 'string',
required: true,
unique: true,
isEmail: true,
maxLength: 200,
example: 'mary.sue@example.com'
},
但是Sails documentation about attributes没有提到这个'example'选项。除了向开发人员提示属性的用途之外,它还有其他用途吗?
没有其他用途,只是提示此字段的用途。
在SailsJS中您可以定义模型并为其提供属性。此框架还为您提供了一个 Web App 代码生成器,其中包含一个模型:User.js.
为该用户生成的许多属性都有一个名为示例的选项,例如:
email: {
type: 'string',
required: true,
unique: true,
isEmail: true,
maxLength: 200,
example: 'mary.sue@example.com'
},
但是Sails documentation about attributes没有提到这个'example'选项。除了向开发人员提示属性的用途之外,它还有其他用途吗?
没有其他用途,只是提示此字段的用途。