我正在学习制作我的第一个 angularJS 应用程序,但在获取数据绑定时遇到了麻烦。代码位于https://github.com/findjashua/angular
在views/index.jade 中,{{understand}}
没有$scope.understand
从public/javascripts/maincontroller.js中获取值
任何想法是什么问题?
我正在学习制作我的第一个 angularJS 应用程序,但在获取数据绑定时遇到了麻烦。代码位于https://github.com/findjashua/angular
在views/index.jade 中,{{understand}}
没有$scope.understand
从public/javascripts/maincontroller.js中获取值
任何想法是什么问题?
您的问题不在于 AngularJS:在 Express 上指定静态文件夹时,您无需在资产 URL 中输入“public”。您的 javascript 文件将如下所示:
script(src='/javascripts/app.js', type='text/javascript')
script(src='/javascripts/maincontroller.js', type='text/javascript')
您可以使用Chrome Dev Tools来计算它。