Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在学习 Node.js 和 AngularJS。要了解如何使用这些技术进行开发,我一直在使用此处的电话目录示例应用程序。
我想不通的是,如何在我的视图中包含服务器生成的页面。我在 Angular 中看到的一切似乎都与静态 .html 有关。但是,我想要一个动态页面,其中包含在服务器上生成的一些代码。换句话说,我想添加类似
/app/partials/dynamicPhone
这甚至可能吗?对于我的生活,我无法弄清楚如何将服务器端页面添加为部分页面。
谢谢
AngularJS 不区分服务器生成的页面和静态页面。从浏览器的角度来看,一切都是一样的。
就像使用/app/partials/dynamicPhone静态模板一样使用你的 - 只记住你不能使用任何查询参数(因为它应该是“静态的”,即不改变)