Javascript TypeError:无法读取属性';用户ID';未定义的

Javascript TypeError:无法读取属性';用户ID';未定义的,javascript,angularjs,ionic-framework,Javascript,Angularjs,Ionic Framework,我收到错误“TypeError:无法读取未定义的属性“userid” 这是我的控制器 .controller('tambahTemanCtrl',function($scope,$ionicPopup,temanService){ $scope.showAlert = function(msg) { $ionicPopup.alert({ title: msg.title, template: msg.message, okText: 'Ok',

我收到错误“TypeError:无法读取未定义的属性“userid”

这是我的控制器

.controller('tambahTemanCtrl',function($scope,$ionicPopup,temanService){
$scope.showAlert = function(msg) {
  $ionicPopup.alert({
      title: msg.title,
      template: msg.message,
      okText: 'Ok',
      okType: 'button-positive'

  });
};

$scope.simpan = function (){
    if (!$scope.datateman.userid){
        $scope.showAlert({
            title: "Information",
            message: "UserID cant be blank"
        });
else{ 
var data = {
Userid: $scope.datateman.userid,
Address: $scope.datateman.address,
Employeeid: $scope.datateman.employeeid,
Email: $scope.datateman.email,
Phoneno: $scope.datateman.phoneno,
Password: $scope.datateman.password,
Division: $scope.datateman.division,
Leavebalance: $scope.datateman.leavebalance
};
var dataCollection = [];
for(var item in data){
if(data.hasOwnProperty(item)){
    dataCollection.push(data[item]);        
}
}
var DTO = {
Value: dataCollection.join('|')
};
//do not use success. its obsolete
temanService.create(DTO).then(function(response){
},function(response){
//error
});
    }

};

});
这是我的html

<ion-header-bar class="bar-positive">
    <h1 class="title">Add User</h1>
</ion-header-bar>
<ion-content class="padding">
  <form>
    <ion-list>
        <label class="item item-input">
            <input type="text" ng-model="datateman.userid"   placeholder="UserID">
        </label>
        <label class="item item-input">
            <input type="text" ng-model="datateman.fullname" placeholder="Fullname">
        </label>
        <label class="item item-input">
            <input type="text" ng-model="datateman.password" placeholder="Password">
        </label>
    </ion-list>
    <div class="spacer" style="height: 5px;"></div>
    <button class="button icon ion-person-stalker button-balanced button- block" ng-click="simpan();"> Save</button>
  </form>
  </ion-content>

添加用户
拯救
它发生在我运行代码时。 我使用的是爱奥尼亚框架和VisualStudio代码。 你能告诉我我做错了什么吗?
谢谢您的帮助

在检查其属性的有效性之前,您应该首先初始化
datateman
对象。像这样:

$scope.datateman = {};

$scope.simpan = function (){

//the interpreter looks for 'datateman' object in order to check for 'userid' existence
    if (!$scope.datateman.userid){ 
        $scope.showAlert({
            title: "Information",
            message: "UserID cant be blank"
        });

运行
simpan
时未定义
datateman
。我没看到从任何地方调用
simpan
吗?