日期管道虫角4.4

时间:2017-10-18 14:42:17

标签: javascript angular

使用角度日期管道时遇到以下问题。如果我完全修改日期,那么管道不起作用。如果我使用public static void main(String[] args) { int[] array = new int[10]; for(int i = 0; i < array.length; i++) { array[i] = (int)(Math.random()*100);} System.out.println("\nBefore Bubble Sort: "); for (int element : array) System.out.print(element + " "); int[] sorted = array.clone(); bubbleSort(sorted); System.out.println("After Bubble Sort: "); for (int element : sorted) System.out.print(element + " "); System.out.println("\n"); System.out.println("\nBefore Insertion Sort: "); for (int element : array) System.out.print(element + " "); sorted = array.clone(); insertionSort(sorted); System.out.println("After Insertion Sort: "); for (int element : sorted) System.out.print(element + " "); System.out.println("\n"); } 它可以正常工作。这是为什么?

new Date()
getDate(){
    const currentDate = new Date();
    currentDate.setMonth(currentDate.getMonth() + 1);
    return currentDate;
}
<p>{{ getDate() | date}}</p>

0 个答案:

没有答案