Questions tagged «include»

许多编程语言提供的一项规定,允许一个文件中定义的功能可以在另一个文件中使用。




30
在HTML文件中包含另一个HTML文件
我有2个HTML文件,假设是a.html和b.html。在a.html我想包括b.html。 在JSF中,我可以这样做: <ui:include src="b.xhtml" /> 这意味着在a.xhtml文件内部,我可以包含b.xhtml。 我们该如何*.html归档?
624 javascript  html  include 



6
Ruby中的include和extend有什么区别?
只是让我了解Ruby元编程。mixin /模块总是设法使我感到困惑。 include:将指定的模块方法混合为目标类中的实例方法 扩展:将指定的模块方法作为目标类中的类方法进行混合 那么主要的区别是这样还是更大的龙潜伏了? 例如 module ReusableModule def module_method puts "Module Method: Hi there!" end end class ClassThatIncludes include ReusableModule end class ClassThatExtends extend ReusableModule end puts "Include" ClassThatIncludes.new.module_method # "Module Method: Hi there!" puts "Extend" ClassThatExtends.module_method # "Module Method: Hi there!"
414 ruby  module  include  extend 

8
ng-include的正确语法是什么?
我正在尝试将HTML代码段包含在中ng-repeat,但无法使用包含功能。看来的当前语法与ng-include以前的语法不同:我看到许多示例使用 <div ng-include src="path/file.html"></div> 但是在官方文档中,它说使用 <div ng-include="path/file.html"></div> 但随后在页面下方显示为 <div ng-include src="path/file.html"></div> 无论如何,我尝试了 <div ng-include="views/sidepanel.html"></div> <div ng-include src="views/sidepanel.html"></div> <ng-include src="views/sidepanel.html"></ng-include> <ng-include="views/sidepanel.html"></ng-include> <ng:include src="views/sidepanel.html"></ng:include> 我的代码片段不是很多代码,但是有很多事情要做。我读了里面的动态加载模板ng-repeat,这可能会引起问题,因此我sidepanel.html只用单词代替了内容foo,但仍然一无所获。 我还尝试过直接在页面中声明模板,如下所示: <script type="text/ng-template" id="tmpl"> foo </script> 并且遍历了ng-include引用脚本的所有变体id,仍然一无所获。 我的页面还有很多内容,但是现在我将其简化为: <!-- index.html --> <html> <head> <!-- angular includes --> </head> <body ng-view="views/main.html"> <!-- view is actually set in the …

10
Objective-C中的#import和#include有什么区别?
在Objective-C中,#import和#include之间有什么区别?在某些情况下,您应该一并使用?被弃用了吗? 我正在阅读以下教程:http : //www.otierney.net/objective-c.html#preamble及其有关#import和#include的段落似乎相矛盾,或者至少不清楚。


19
在C / C ++中检测多余的#include?
我经常发现文件的标头部分一直都在变大,但从未变小。在源文件的整个生命周期中,类可能已经移动并被重构,并且很可能有很多#includes不需要再存在了。将它们保留在那里只会延长编译时间,并增加不必要的编译依赖项。试图弄清仍然需要哪些可能会很乏味。 是否有某种工具可以检测到多余的#include指令并建议可以安全删除的指令? 皮棉可以这样做吗?


15
获取初始运行脚本的绝对路径
我搜索了很多内容,并获得了很多不同的解决方案和包含信息的变量来获取绝对路径。但是它们似乎在某些条件下工作,而不在其他条件下工作。有没有一种方法可以获取PHP中已执行脚本的绝对路径?对我来说,该脚本将从命令行运行,但是,如果在Apache等内部运行,则解决方案也应起作用。 说明:最初执行的脚本,不一定是解决方案的编码文件。
247 php  path  include 

13
如何包含目录中的所有PHP文件?
在PHP中可以包含脚本目录吗? 即代替: include('classes/Class1.php'); include('classes/Class2.php'); 是否有类似的东西: include('classes/*'); 似乎找不到找到包括特定类的大约10个子类的集合的好方法。
230 php  include 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.