찾다

 >  Q&A  >  본문

angular.js - angular初学者 简单控制器的问题

视图
<!doctype html>
<html ng-app>
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <script src="angularJs/angular.min.js"></script>
        <script src="angulartest.js"></script>
   <style>
       input.ng-invalid{
           background: blue;
       }     
   </style>
    </head>
    <body >
        <p ng-app="myapp" ng-controller="myctrl">
            {{myname}}
        </p>

    </body>
</html>
控制器
var app=angular.module('myapp',[]);
app.controller('myctrl',function($scope){
$scope.myname="zx";
});

一直都有问题 也不知道为什么 求带

大家讲道理大家讲道理2744일 전461

모든 응답(2)나는 대답할 것이다

  • 伊谢尔伦

    伊谢尔伦2017-05-15 17:13:15

    html 태그에서 ng-app을 제거해주세요

    으아아아

    회신하다
    0
  • 阿神

    阿神2017-05-15 17:13:15

    1. 두 개의 ng-app 중 하나를 남겨두세요.
    2. 나머지에는 ng-app="myapp"을 사용하세요.
    3.

    회신하다
    0
  • 취소회신하다