我遵循這個關於使用jhipster的美麗教程。我可以一起運行Maven和Grunt。我已經能夠使用默認用戶進行身份驗證。我遇到麻煩的地方是創建一個新的實體。創建一個實體
http://jhipster.github.io/creating_an_entity.html
我跑
yo jhipster:entity foo
然後我的角度JavaScript文件以後作出的index.html文件中三個foo的js文件條目:
foo-router.js
foo-controller.js
foo-serrvice.js
預期頁面沒有出現在
http://localhost:8080/#/foo
我看到下面的控制檯錯誤:
Uncaught ReferenceError: App is not defined foo-router.js:3
(anonymous function) foo-router.js:3
Uncaught ReferenceError: App is not defined foo-controller.js:3
(anonymous function) foo-controller.js:3
Uncaught ReferenceError: App is not defined foo-service.js:3
(anonymous function) foo-service.js:3
好吧我設法通過在三個javascript文件中用jhipsterApp替換App來實現它,並且我將它們的引用移至index.html中的所有javascript之後。他們可能只需要出現在定義了jhipsterApp的app.js之後。 –
你也許可以回答你自己的問題,然後標記它解決。 –