我用yeoman发生器写了一个有角度的应用程序。它在开发中运行良好,但在部署到heroku并访问特定页面后,我会收到此错误:
- Error: [$parse:lexerr] Lexer Error: Unexpected next character at columns 0-0 [\] in expression [\].
- http://errors.angularjs.org/1.2.6/$parse/lexerr?p0=Unexpected%20nextharacter%20&p1=s%200-0%20%5B%5C%5D&p2=%5C
- at http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:3:30474
- at Zd.throwError (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:6:14396)
- at Zd.lex (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:6:13696)
- at $d.parse (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:6:16445)
- at http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:5:13197
- at e.parseAs (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:5:23401)
- at Object.e.(anonymous function) [as parseAsResourceUrl] (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:5:23604)
- at http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:6:28873
- at q (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:4:23046)
- at h (http://ang-news.herokuapp.com/scripts/244c37f5.vendor.js:4:19250)
This description表示当表达式具有词法错误时,会发生错误。
那是什么,为什么只出现在生产中?
我有一些错误,而我
使用ng点击
使用ng点击
- <a ng-click="#/search/San+Francisco">test</a>
而不是ng-href
- <a ng-href="#/search/San+Francisco">test</a>
我希望它可能有帮助