简体   繁体   English

在angular上调用控制器方法

[英]Call controller method on angular

This is the fist angular app that I try to make ,let's see 这是我尝试制作的第一个有角度的应用程序,让我们看看

var app = angular.module('miApp', []);

app.controller('CochesController', function($scope) {
   $scope.coche ={
    marca:"Renault",
    modelo:"Clio",
  };

  $scope.nombreCompleto = function(){
    var x = $scope.coche;
    return x.marca+" "+x.modelo;
  };
})

and the view 和视图

<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8" />
    <title>AngularJS Plunker</title>
    <script>document.write('<base href="' + document.location + '" />');</script>
    <link href="style.css" rel="stylesheet" />
    <script data-semver="1.4.8" src="https://code.angularjs.org/1.4.8/angular.js" data-require="angular.js@1.4.x"></script>
    <script data-require="angular.js@1.4.x" data-semver="1.4.8" src="script.js"></script>
    <script src="app.js"></script>
  </head>

  <body ng-app="miApp" ng-controller="CochesController">
    <p>{{coche.nombreCompleto()}}</p>
  </body>

</html>

I can use the attributes marca and modelo but I can't use the function ¿whats is wrong? 我可以使用marca和modelo属性,但不能使用功能¿什么是错的?

您可以通过methodName直接调用控制器范围内可用的方法,如下所示,

<p>{{nombreCompleto()}}</p>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM