我希望在提交表單時在數據庫中添加當前日期。數據庫中的缺省值
{{dateEmission | date:'dd-MM-yyyy'}}
$scope.savedemande = function() {
var today=new Date();
var date= today.toLocaleDateString() + today.toLocaleTimeString();
$scope.savedemande = function() { \t
\t $http.post("/createDemande", $scope.demande).success(function(data) {
\t \t if (!data.errors) {
\t \t \t $scope.demande=data;
\t \t \t $scope.errors = null;
\t }
請說明您的問題 –
好了,所以我有一個表格,submiting我想,當前的日期將被保存在我的entiy後,但與該代碼的申請日期在我的數據庫是空的。 –
這裏你沒有在你的http post請求'$ http.post(「/ createDemande」,$ scope.demande)''中傳遞日期。您正在通過** $ scope.demande ** right –