Czuję twój ból ... kolejny format daty i czasu ... dokładnie to, czego potrzebujesz!
Korzystając z interfejsu Web Api 2, możesz użyć atrybutów tras do określenia parametrów.
więc dzięki atrybutom w swojej klasie i metodzie możesz zakodować adres URL REST za pomocą tego formatu utc, z którym masz problem (najwyraźniej jego ISO8601, prawdopodobnie przy użyciu startDate.toISOString ())
[Route(@"daterange/{startDate:regex(^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$)}/{endDate:regex(^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$)}")]
[HttpGet]
public IEnumerable<MyRecordType> GetByDateRange(DateTime startDate, DateTime endDate)
.... ALE, chociaż to działa z jedną datą (startDate), z jakiegoś powodu nie działa, gdy endDate jest w tym formacie ... debugowany przez wiele godzin, jedyną wskazówką jest wyjątek mówiący, że nie działa jak dwukropek ":" (nawet chociaż web.config jest ustawiony za pomocą:
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" requestPathInvalidCharacters="" />
</system.web>
Stwórzmy więc inny format daty (wzięty z polyfill dla formatu daty ISO) i dodajmy go do daty JavaScript (dla zwięzłości, konwertuj tylko do minut):
if (!Date.prototype.toUTCDateTimeDigits) {
(function () {
function pad(number) {
if (number < 10) {
return '0' + number;
}
return number;
}
Date.prototype.toUTCDateTimeDigits = function () {
return this.getUTCFullYear() +
pad(this.getUTCMonth() + 1) +
pad(this.getUTCDate()) +
'T' +
pad(this.getUTCHours()) +
pad(this.getUTCMinutes()) +
'Z';
};
}());
}
Następnie wysyłając daty do metody Web API 2, możesz przekonwertować je z ciągu na datę:
[RoutePrefix("api/myrecordtype")]
public class MyRecordTypeController : ApiController
{
[Route(@"daterange/{startDateString}/{endDateString}")]
[HttpGet]
public IEnumerable<MyRecordType> GetByDateRange([FromUri]string startDateString, [FromUri]string endDateString)
{
var startDate = BuildDateTimeFromYAFormat(startDateString);
var endDate = BuildDateTimeFromYAFormat(endDateString);
...
}
private DateTime BuildDateTimeFromYAFormat(string dateString)
{
Regex r = new Regex(@"^\d{4}\d{2}\d{2}T\d{2}\d{2}Z$");
if (!r.IsMatch(dateString))
{
throw new FormatException(
string.Format("{0} is not the correct format. Should be yyyyMMddThhmmZ", dateString));
}
DateTime dt = DateTime.ParseExact(dateString, "yyyyMMddThhmmZ", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal);
return dt;
}
więc będzie to adres URL
http://domain/api/myrecordtype/daterange/20140302T0003Z/20140302T1603Z
Hanselman podaje tutaj kilka powiązanych informacji:
http://www.hanselman.com/blog/OnTheNightmareThatIsJSONDatesPlusJSONNETAndASPNETWebAPI.aspx
http://domain/api/controller/action/2012-12-31T22%3A00%3A00.000Z