Я не понимаю, почему она отображает функцию в поле ввода? Я просто пытаюсь ввести имя и показать его пользователю.
HTML:
<div ng-app = "mainApp" ng-controller =
"studentController">
<tr>
<td>Enter full name:</td>
<td><input type = "text" ng-model =
"student.fullName"></td>
</tr>
<tr>
<td>Name in Upper Case:</td>
<td>{{student.fullName() | uppercase}}</td>
</tr>
</div>
JAVASCRIPT:
var mainApp = angular.module("mainApp", []);
mainApp.controller('studentController',
function($scope) {
"use strict";
$scope.student = {
fullName: function() {
var studentObject;
studentObject = $scope.student;
return studentObject.fullName;
}
};
});