使用Grunt.js得到未定义

时间:2016-04-20 05:35:48

标签: angularjs gruntjs

您好我正在我的应用程序中实现Grunt但我得到的控制器是未定义的错误。我试过,但我没有找到任何解决方案请帮我解决这个问题。

 commonModule.exports = function(grunt) {grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),});grunt.loadNpmTasks('grunt-contrib-jshint');grunt.loadNpmTasks('grunt-contrib-concat');grunt.loadNpmTasks('grunt-contrib-uglify');grunt.loadNpmTasks('grunt-ng-annotate'); grunt.registerTask('test'['jshint','ngAnnotate','concat','uglify']);ngAnnotate: {
options: {
    singleQuotes: true
}app: {
    files: {
                    'login/js/login-controller.js',
       }
}}concat: {
js: { //target
    src: ['login/js/login-controller.js'],
    'login/js/login-controller.js',
}}};

2 个答案:

答案 0 :(得分:0)

这是简单的javascript代码,它将验证电子邮件和电话号码。

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
function ValidateEmail(mail)   
{  
var mailformat = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;  
// if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.emailAddr.value))  
if(mail.match(mailformat))
  {  alert(mail);
    return (true)  
  }  
    alert("You have entered an invalid email address!")  
    return (false)  
}  

function validate()
{
var data=document.getElementById("email").value;
checkNumberorEmail();

}
function phonenumber(inputtxt)  
{  
  var phoneno = /^\d{10}$/;  
  if((inputtxt.match(phoneno)))  
        {  
        alert(inputtxt);
      return true;  
        }  
      else  
        {  
        alert("enter 10 digit number");  
        return false;  
        }  
}  


function checkNumberorEmail()
{
  var data=document.getElementById("email").value;
  if (isNaN(data)) 
  {
    ValidateEmail(data)   ;

  }
  else{
  phonenumber(data) 
  }
}
</script>
</head>
<body>

<form >

<input type="text" name="email" id="email">
<input type="button" onclick="validate()">
</form>
</body>
</html>

<强> FIDDLE

答案 1 :(得分:0)

方法本身并不好。但这里有角度js中可能的简单函数

<强> HTML

<form name="form" ng-app="app" ng-controller="Ctrl" >
 <div class="control-group" ng-class="{invalidClass: 'error'}[submitted && form.email.$invalid]">
    <label class="control-label" for="email">Your email address/Mobile number</label>
    <div class="controls">
        <input type="text"  name="email" ng-model="email" required />

    </div>
 </div>

<button type="submit" class="btn btn-primary btn-large" ng-click="submitForm()">Submit</button></form>

<强>控制器

$scope.submitForm = function(){
 if(validateEmail($scope.email) || validateMobile($scope.email)){
// The nput is email or mobile
}
else{
  //both are not valid
  console.log("Invalid inputs");
  $scope.invalidClass = true;
 }
}

 function validateEmail(email) {
    var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
    return re.test(email);
  }
function validateMobile(email) {
    var re = /^\d{10}$/;
  return re.test(email);
}