我正在编写一个应用程序ASP.net
。我也在使用 Bootstrap 3 框架。现在bootstrap-table.min.js
使用
f(!h.includes(e))....
这在 Internet Explorer 11 中引发了一个例外,并建议使用 indexOF。在 Firefox 和 Chrome 中一切正常。
一个解决方案是修改功能和使用.array-includes
来代替,.includes
但要做到这一点,我需要一个填充的环境。
无论如何,我尝试使用airbnb-js-shims
版本徽章。我不明白我要如何使用这个垫片。
我已经airbnb-js-shims
使用命令安装了(Visual Studio 2013 Package Console)
npm i airbnb-js-shims
但我收到以下消息
npm.cmd : npm notice created a lockfile as package-lock.json. You should commit this file.
In row:1 car:4
+ npm <<<< i airbnb-js-shims
+ CategoryInfo : NotSpecified: (npm notice crea...mmit this file.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
npm
WARN
SupportPRJ No description
npm
WARN
SupportoPRJ No repository field.
npm
WARN
SupportoPrj No license field.
命令npm i airbnb-js-shims
创建了一个名为的文件夹node_modules
,其中有许多子文件夹(airbnb-js-shims
等array.prototype.flat
...)
网站上写的是 Just require/import airbnb-js-shims
,环境会被填充"
import 'airbnb-js-shims';
我不明白我必须将此命令放在.js
文件中还是其他任何地方?
我把这个命令放在 a.js
但我收到语法错误的异常。
预先感谢您的宝贵支持,对于我对这种环境缺乏了解,我深表歉意。