我想輸入的日期字段設置爲當前日期:設置當前日期的流星模板輸入[類型=日期]
Template.something.onRendered(function() {
var today = new Date();
var dateString = today.format("yyyy-MM-dd");
$('#age').val(dateString);
});
<template name="something">
<input type="date" id="age">
</template>
但是,這並不工作,我看不出有什麼我做錯了......
,我發現了錯誤Exception from Tracker afterFlush function
嗯 - 你可以格式化'日期()'這樣。 ..'(new Date()).format(「yyyy-MM-dd」)'''yyyy-MM-dd'' – tymeJV