Answer the question
In order to leave comments, you need to log in
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");}] );
'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
Полученный файл нужно загрузить на странице angularjs приложения (только загрузить его надо после загрузки скрипта с angularjs).
По коду файла видно что ваш шаблон помещается в кеш шаблонов с ключем совподающим с сылкой на ресурс.
ui.router использует тот же кеш шаблонов https://github.com/angular-ui/ui-router/blob/4da7e...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question