value() を app.config() に挿入するのに問題があります。コードは次のとおりです(coffeescript)
window.app = angular.module("app", [])
app.value("template_path", "assets/angular/templates/users")
app.config(["$routeProvider","template_path" ($routeProvider, template_path) ->
console.log template_path
「不明なプロバイダー: app からの template_path」エラーをスローしています
config() メソッドに value() 設定値を注入できないということでしょうか? 私は1.0.2を使用しています