在 AngularJS 中,我输入了由 php 填充的输入,如下所示:
<form method="post" ng-controller="PostCtrl">
<input type="text" name="post_title" ng-model="post_title" />
</form>
现在在我的控制器中,我从不指定 ng-model,所以我假设我有一个空控制器:
EngagementApp.controller('PostCtrl', ['$scope',
function($scope) {
return function($scope) {
}
}]);
我遇到的问题是任何与 ng-model 自动关联的东西都会被空值替换。我的问题是,如果控制器中没有设置任何值,我该如何阻止默认的 php 值被替换?