#in

npm link的用法

将npm模块链接到对应的运行项目中去,在本地对模块进行调试:1.项目和模块在同一个目录下npmlink../module2.项目和模块不在同一个目录下cd到模块目录,npmlink,进行全局linkcd到项目目录,npmlink模块名(package.json中的name)3.解除link解除项目和模块link,项目目...
星空 星空·2021-07-25

c#调用windows的虚拟键盘

c#调用windows自带的tabtip.exe来调用虚拟键盘dynamicfile="C:\ProgramFiles\CommonFiles\microsoftshared\ink\TabTip.exe";if(!System.IO.File.Exists(file))return;Process.Start(fil...

mysql 报错 Got error 28 from storage engine

mysql报错Goterror28fromstorageengine是因为磁盘临时空间不够了,增加磁盘空间就可以解决这个报错。...