AngularJS Multiple ng-app within a page

后端 未结 13 2484
闹比i
闹比i 2020-11-22 01:48

I have just started learning Angular JS and created some basic samples however I am stuck with the following problem.

I have created 2 modules and 2 controllers.

13条回答
  •  一整个雨季
    2020-11-22 02:32

    You can define a Root ng-App and in this ng-App you can define multiple nd-Controler. Like this

        
        
        
    
    
    
         
    
        
        
    Enter first name:

    Enter last name:

    You are entering: {{student.fullName()}}
    Enter first name:
    Enter last name:
    Name: {{student.fullName()}}
    Subject: .
    NameMarks
    {{ subject.name }} {{ subject.marks }}

提交回复
热议问题