处理一个简单的联系表单,如果 $scope 未定义,我需要在其中显示错误消息。
验证部分有效,但是我不记得如何在 html 端的 ng-show 下启用消息视图。
HTML:
<p class="response error" ng-show="error">{{errorMessage}}</p>
JS:
var $emptyContent = 'Please enter your prices.';
app.controller('priceForm', ['$scope', '$http', function($scope, $http){
$scope.formData;
// Process the form data
$scope.submitForm = function () {
console.log($scope.formData);
if($scope.formData == null) {
// Show empty content message
console.log($emptyContent);
}
}
}])