<div ng-app="" ng-controller="personController">
名: <input type="text" ng-model="person.firstName"><br>
姓: <input type="text" ng-model="person.lastName"><br>
function personController($scope) { $scope.fullName = function() { return x.firstName + " " + x.lastName;