Angular ng-include in Jade.

I am trying to include a header using ng-include from Angular in my Jade template:

doctype html
html(lang="en")
    head
        meta(charset='UTF-8')
        meta(name='fragment', content='!')
        base(href='/')
        title Node Express Angular
        link(rel='stylesheet', href='//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css')
        link(rel='stylesheet', href='/css/syle.css')
    body(ng-app='myApp')
        ng-include(src='\'/partials/header.jade\'')
        div.container
            div.jumbotron.text-center
                h1 Home Page
                p This page is a draft in progress
        script(src='//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.15/angular.min.js')
        script(src='//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.8/angular-ui-router.min.js')
        script(src='/js/app.js')

The text in header.jade is as follows:

nav.navbar.navbar-inverse(role='navigation')
ul.nav.navbar-nav.navbar-header
    li
        a(src='/home', class='navbar-brand') Home
    li
        a(src='/about') About
    li
        a(src='/login') Login
    li
        a(src='/register') Register

I tried both ng-include(src='\'/partials/header.jade\''), anddiv(ng-include='\'/partials/header.jade\'')

In the Chrome Developer Console, the first displays <!--ng-Include: undefined -->and the second:<!-- ng-Include: '/partials/header.jade' -->

Any clues?

+4
source share
4 answers

Is there a specific reason you are using Angular ng-includeinstead of the Jade inclusion mechanism?

body(ng-app='myApp')
    include partials/header

Link to Jade docs .

+9
source

Refer to the ngInclude whitepaper using the code below

div(ng-include="'partials/header.jade'")

ngInclude,

ng-include(src="'partials/header.jade'")

0

Angular JADE Angular ... !

btw, Jade , CDN

:

HTML:

<ng-include src="'MyPageWithJadeScript.html'"></ng-include>

MyPageWithJadeScript.html:

<jade>tag#id.class jade text</jade>

angular:

app
.directive('jade',function($compile){
return{
    transclude: true,
    template: '<div ng-transclude></div>',
    restrict: 'E',
    link: function(scope, element){
      element
        .after(
          $compile(
            jade
            .render(
                element.html(),
                {pretty:'\t'}
            )
          )(scope)
        )
        .remove();
    }
};
});

,

0

express, user-description.jade view/folder jade. :

div
  include user-description.jade

Jade docs .

0

Source: https://habr.com/ru/post/1540189/


All Articles