作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在前端使用angularjs,在后端使用loopback,对数据库进行 flex 搜索。
我有一个模型,其属性为:
"name": {
"type": "string",
"required": true
},
"mobileNumber": {
"type": "string",
"required": true
},
"email": {
"type": "string"
},
"message": {
"type": "string",
"required": true
},
"quantity": {
"type": "number",
"required": true
},
"price": {
"type": "number",
"required": true
},
"status": {
"type": "string",
"required": true,
"default": "open"
}
{
"_index": "XXXXXX",
"_type": "XXXXX",
"_id": "XXXXXXX",
"_version": 1,
"_score": 1,
"_source": {
"name": "aadil kirana",
"email": "aadil@gmail.com",
"message": "dfgfb dgfggf",
"quantity": 3434,
"price": 5454,
"status": "open",
"createdAt": "2017-12-19T14:53:41.727Z",
"updatedAt": "2017-12-19T14:53:41.727Z"
}
}
filter = {
order: ['status ASC','createdAt DESC'],
};
最佳答案
您可以将新属性作为statusOrder添加到数据中并定义
关于angularjs - 回送自定义顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47893806/
我有一个问题,当我将两个对象类型作为远程方法参数传递时,第一个参数被第二个参数覆盖。以下是代码和结果。我该如何避免第二个参数不覆盖第一个参数? module.exports = (Model) =>
我是一名优秀的程序员,十分优秀!