答案 0 :(得分:1)
<script src='fullcalendar/fullcalendar.js'></script>
<script src='fullcalendar/lang-all.js'></script>
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
lang: 'fr'
});
});
</script>
以上是常规的js解决方案。通过Angular-UI日历文档,我认为您的解决方案类似,但类似于:
myAppModule.controller('MyController', function($scope) {
/* config object */
$scope.uiConfig = {
calendar:{
lang: 'fr'
}
};
});