Questions tagged «shim»

6
垫片和填料的区别是什么?
两者似乎都在Web开发圈子中使用,请参见HTML5跨浏览器Polyfills,其中说: 所以在这里,我们收集了所有的垫片,后备和填充物... 或者,有es5-shim项目。 在我当前的项目中,我们使用了许多这样的工具,我想将它们全部粘贴在同一目录中。所以,我应该怎么称呼这个目录--- shims或polyfills?

4
HTML5中的polyfill是什么意思?
HTML5中的polyfill是什么意思?我在许多有关HTML5的网站中都看到了这个词,例如HTML5-Cross-Browser-Polyfills。 因此,这里我们收集了所有的填充,后备和填充,以便将HTML5功能植入到本机不支持它们的浏览器中。 我实际上不了解polyfill的含义。 是新的HTML5技术还是JavaScript库?在HTML5之前我从未听说过这个词。 垫片,后备和填料之间有什么区别?


3
Requirejs为什么以及何时使用填充程序配置
我从这里API读取了requirejs文档 requirejs.config({ shim: { 'backbone': { //These script dependencies should be loaded before loading //backbone.js deps: ['underscore', 'jquery'], //Once loaded, use the global 'Backbone' as the //module value. exports: 'Backbone' }, 'underscore': { exports: '_' }, 'foo': { deps: ['bar'], exports: 'Foo', init: function (bar) { //Using a function allows …
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.