คำถามติดแท็ก angularjs-ng-include

4
การสูญเสียขอบเขตเมื่อใช้ ng-include
ฉันมีเส้นทางโมดูลนี้: var mainModule = angular.module('lpConnect', []). config(['$routeProvider', function ($routeProvider) { $routeProvider. when('/home', {template:'views/home.html', controller:HomeCtrl}). when('/admin', {template:'views/admin.html', controller:AdminCtrl}). otherwise({redirectTo:'/connect'}); }]); โฮม HTML: <div ng-include src="views.partial1"></div> partial1 HTML: <form ng-submit="addLine()"> <input type="text" ng-model="lineText" size="30" placeholder="Type your message here"> </form> HomeCtrl: function HomeCtrl($scope, $location, $window, $http, Common) { ... $scope.views = { partial1:"views/partial1.html" …

2
AngularJS ng-include ไม่รวมมุมมองเว้นแต่จะส่งผ่านใน $ scope
มันผิดหรือไม่ที่จะถือว่าngIncludeสามารถใช้เส้นทางดิบ? ฉันพยายามตั้งค่าngIncludeดังต่อไปนี้: <div ng-include src="views/header.html"></div> วิธีนี้ใช้ไม่ได้ แต่ถ้าฉันทำสิ่งนี้มันได้ผล // HeaderController app.controller('HeaderCtrl', function($scope){ $scope.templates = {[ template: { url: 'views/header.html' } ]}; $scope.template = $scope.templates[0].template; }); ใน index.html ของฉัน <div ng-controller="HeaderCtrl"> <div ng-include src="template.url"></div> </div> ไม่ngIncludeเพียง แต่ยกเว้นค่าออกจากขอบเขตหรือไม่ ถ้าเป็นเช่นนั้นทำไมจึงเป็นเช่นนี้และไม่ใช่การรวม html บางส่วนโดยตรง

5
ng-include ตามเงื่อนไขใน angularjs
ฉันจะทำ ng-include ตามเงื่อนไขใน angularJS ได้อย่างไร เช่นฉันเพียงต้องการที่จะรวมถึงบางสิ่งบางอย่างถ้าตัวแปรมีการตั้งค่าxtrue <div ng-include="/partial.html"></div>

1
AngularJS: ngInclude เทียบกับคำสั่ง
ฉันไม่ค่อยเข้าใจว่าควรใช้คำสั่งเมื่อใดและเมื่อใดจึงจะเหมาะสมกว่าที่จะใช้ nginclude ลองดูตัวอย่างนี้: ฉันมีบางส่วนpassword-and-confirm-input-fields.htmlนั่นคือ html สำหรับป้อนและยืนยันรหัสผ่าน ฉันใช้ทั้งในหน้าสมัครและภายใต้หน้าการเปลี่ยนแปลงรหัสผ่าน ทั้งสองเพจมีคอนโทรลเลอร์แต่ละหน้า html บางส่วนไม่มีคอนโทรลเลอร์เฉพาะ ฉันควรใช้คำสั่งหรือngIncludeเพื่อสิ่งนี้?
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.