休斯顿,我们遇到了问题。
我正在使用mongoose开发API Rest,我需要当独特的字段值在那里时,mongoose不保存POST请求。
示例:
{'_id': '1234', 'fieldUnique': 'fieldTeste'} // Allowed.
{'_id': '1234', 'fieldUnique': 'fieldTeste1'} // Allowed.
{'_id': '5678', 'fieldUnique': 'fieldTeste'} // Allowed.
{'_id': '5678', 'fieldUnique': 'fieldTeste1'}// Allowed.
// Imagine mongoose printing: Are you crazy? This exists.
{'_id': '1234', 'fieldUnique': 'fieldTeste'}
//Imagine Again: I will not repeate. This exists! Get out here.
{'_id':'1234', 'fieldUnique':'fieldTeste1'}
休斯敦。你能帮我解决这个小问题,展示如何在mongoose架构中制作它或在请求中显示逻辑吗?
来自巴西,带着爱。 雨果。