如何获取模型默认值?

时间:2017-07-12 07:38:23

标签: javascript php angularjs function

我使用带有角度的php,我希望从php表达式设置ng模型中的值,然后从控制器读取ng-model值,但这些值为null:/

  <input ng-model="id" ng-init="id= '<?php echo $userID ?>'">

控制器:

$scope.id = "";  
$scope.getId = function() {
   console.log($scope.id); // ==> id value is "", but in the html is 455
}

1 个答案:

答案 0 :(得分:0)

似乎你可以从php后端获取id的一种方法是使用角度中的http服务来发出ajax请求。