我使用带有角度的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
}
答案 0 :(得分:0)
似乎你可以从php后端获取id的一种方法是使用角度中的http
服务来发出ajax请求。