我怎样才能从" 2017-11-13T00:00:00"使用angularjs。 我尝试过使用以下方法。
&scope.date = "2017-11-13T00:00:00";
var dateParts = $filter('date')(new Date(&scope.date), 'yyyy-MM-dd');
但它不适合我。 谢谢,
答案 0 :(得分:0)
我认为这是一个错字public static Long readInputStreamWithTimeout(InputStream is, byte[] b, int timeoutMillis) throws IOException
{
Long something = 0;
int bufferOffset = 0;
long maxTimeMillis = System.currentTimeMillis() + timeoutMillis;
while (System.currentTimeMillis() < maxTimeMillis && bufferOffset < b.length)
{
int readLength = java.lang.Math.min(is.available(),b.length-bufferOffset);
something = is.readLong();
if (readResult == -1) break;
bufferOffset += readResult;
}
return something;
}
- &gt; &scope
它应该可以解决您的问题。
在本地尝试以下代码,并且能够在控制台中看到“2017-11-13”。
$scope
$scope.myDate = '2017-11-13T00:00:00';
答案 1 :(得分:0)
试试这个。
$ scope.format =“M-d-yyyy”;
$ scope.date = dateFilter(新日期(“2017-11-13T00:00:00”),格式)