我正在使用john papa样式来开发我的角度应用程序,因此控制器使用服务将数据传递给另一个控制器。在第二个控制器中,我想在控制器调用时设置输入字段值。我试着把它设置为
vm.form.mobile = getMob [1] .mobile;
但这对我不起作用。
这是我的第二个控制器
(function ()
{
'use strict';
angular
.module('app.pages.auth.verify-mobile')
.controller('VerifyMobileController', VerifyMobileController);
/** @ngInject */
function VerifyMobileController($scope,dataservice,msApi, $state,$mdDialog)
{
var vm = this;
window.onbeforeunload = function() {
$state.go('app.pages_auth_login');
}
var getMob = dataservice.getData();
if(typeof getMob !== 'undefined'){
vm.form.mobile = getMob[1].mobile;
}
}
}();
这是html元素
<form name="verifyMobileForm" novalidate>
<md-input-container class="md-block" md-no-float>
<input type="mobile" id="mobile" name="mobile" ng-model="vm.form.mobile" placeholder="Your Mobile number" ng-pattern="/^[789]\d{9}$/" maxlength="10" required>
<div ng-messages="verifyMobileForm.mobile.$error" role="alert" multiple>
<div ng-message="required">
<span >Mobile no. is required</span>
</div>
</div>
</md-input-container>
<div class="dialog-demo-content" layout="row" layout-wrap layout-margin layout-align="center">
<md-button type="submit" class="md-raised md-accent submit-button" ng-disabled="verifyMobileForm.$invalid || verifyMobileForm.$pristine" ng-click = "vm.checkMobile($event, document.getElementById('mobile').value)">
Next
</md-button>
</div>
</form>
答案 0 :(得分:1)
尝试添加ng-value属性 NG-值=&#34; {{vm.form.mobile}}&#34;
例如:
<input type="mobile" id="mobile" name="mobile" ng-value="{{vm.form.mobile}}" ng-model="vm.form.mobile" placeholder="Your Mobile number" ng-pattern="/^[789]\d{9}$/" maxlength="10" required>
答案 1 :(得分:1)
确保您在视图中使用controllerAs语法,如下所示:
<div ng-controller="VerifyMobileController as vm">
编辑:顺便说一句
if(typeof getMob !== 'undefined')
有一天,当结果以null或NaN的形式返回时,有一天会把你射中脚,一种更常见的方法就是:
if(getMob)