AngularJS and Laravel Blade: Module Error when changing the interpolateProvider (Delimiter)
问题 I have a strange problem when combining Laravel 5 (with Blade) and Angular 1.3. I am experienced with Laravel, but a newbie with Angular. I know that I have to change Angular's delimiters to be able to make it work with Laravel's Blade. So here is what I did: //app.js (function(){ var app = angular.module('TeamManager', [], function($interpolateProvider) { $interpolateProvider.startSymbol('<%'); $interpolateProvider.endSymbol('%>'); }); app.controller('TeamController', function(){ // Do