我在jaydata 中有一个数据模型,如下所示
js型
$data.Entity.extend('Expense', {
Id: { type: 'int', key: true, computed: true },
Name: { type: 'string' },
Date: { type: Date },
Price: { type: 'number' }
});
$data.Entity.extend('Regular', {
Id: { type: 'int', key: true, computed: true },
Name: { type: 'string' },
Price: { type: 'number' }
});
$data.EntityContext.extend("ExpenseDatabase", {
Expenses: { type: $data.EntitySet, elementType: Expense },
Regulars: { type: $data.EntitySet, elementType: Regular }
});
我想在Date之前提交结果,但我没能。有人能帮我吗?我的过滤代码如下。但它不起作用,抛出了一个类型错误。
var d = new Date();
exDB.Expenses
.filter( function(exp) {
return exp.Date.day() == d.getDate();
})
.forEach( function(exp) {
alert(exp.Name + exp.Date.getDate());
toAdd = '<li><a>'+exp.Name+'<span class="ui-li-count">'+exp.Price+'</span></a></li>';
$("#expenseList").append(toAdd);
$("#expenseList").listview("refresh");
});
一般的解决方案是编写一个具有两个条件的查询来检查间隔:
//first second of the current day
var intervalStart = new Date(new Date(date - date % (24 * 60 * 60 * 1000)));
//last second of the current day
var intervalEnd = new Date(intevalStart .valueOf() + 24 * 60 * 60 * 1000);
exDB.Expenses
.filter( function(exp) {
return exp.Date >= this.minDate && exp.Date <= this.maxDate
}, {minDate: intervalStart , maxDate: intervalEnd })
.foreach(function(){...});