S
S
Sergey2016-01-12 00:58:11
Angular
Sergey, 2016-01-12 00:58:11

How to connect view to ui-router?

There is a file generated by gulp-ng-templates


angular.module("myApp", []).run(["$templateCache", function($templateCache) {$templateCache.put("/news/views/news.html","My Template");}] );

How to connect it to ui-router?
'use strict';

angular.module('myApp', [
  'ui.router'
])
.config(function($stateProvider, $urlRouterProvider, $locationProvider) {
  $locationProvider.html5Mode(true);
 
  $stateProvider
    .state('news', {
      url: "/",
      templateUrl: "/news/views/news.html"
    });
});

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Kano, 2016-01-12
@Sergamers

Полученный файл нужно загрузить на странице angularjs приложения (только загрузить его надо после загрузки скрипта с angularjs).
По коду файла видно что ваш шаблон помещается в кеш шаблонов с ключем совподающим с сылкой на ресурс.
ui.router использует тот же кеш шаблонов https://github.com/angular-ui/ui-router/blob/4da7e...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question