摘要: 错误描述: 解决办法: 来源:https://facebook.github.io/react-native/docs/android-setup.html 阅读全文
posted @ 2016-04-17 22:16 徐航 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 检索 COM 类工厂中 CLSID 为 {000209FF-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 8000401a 1.运行dcomcnfg.exe打开组件服务, 2.依次展开"组件服务"->"计算机"->"我的电脑"->"DCOM配置"->" 阅读全文
posted @ 2016-04-17 22:13 徐航 阅读(11909) 评论(0) 推荐(0) 编辑
摘要: 1、安装nodejs(移动网络或者vpn下安装) 2、安装Git 指令列工具(安装地址:http://git-scm.com/download/win)安装时选择 Run Git from the Windows Command Prompt 3、安装Ruby执行环境(安装地址:http://www 阅读全文
posted @ 2016-04-17 22:08 徐航 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 注:此处获取文档页数不可用以下方法获取,因为它表示的页数是指页面视图的页大小,并不是页面视图的页大小。 Word.WdStatistic stat = Word.WdStatistic.wdStatisticPages; file_pages = doc.ComputeStatistics(stat 阅读全文
posted @ 2016-04-17 22:05 徐航 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 方法一:采用乘除(未考虑除0溢出等问题) var a=2,b=3; console.log("a="+a) console.log("b="+b) a=a*b; b=a/b; a=a/b; console.log("a="+a) console.log("b="+b) 方法二:采用加减 var a= 阅读全文
posted @ 2016-04-17 22:03 徐航 阅读(259) 评论(0) 推荐(0) 编辑