微信WeixinJSBridge API

  1 <!DOCTYPE html>
  2 <html>
  3  <head>
  4   <title>微信WeixinJSBridge API</title> 
  5   <meta charset="utf-8" /> 
  6   <script type="text/javascript">
  7 (function(){
  8 var a=document.getElementsByTagName("html")[0];
  9 window.Session={appDomain:a.getAttribute("data-app-domain")||"",staticDomain:a.getAttribute("data-static-domain")||""}
 10 })();
 11  
 12 window.registNS=function(fullNS,isIgnorSelf){
 13 var reg=/^[_$a-z]+[_$a-z0-9]*/i;var nsArray=fullNS.split(".");
 14 var sEval="";
 15 var sNS="";
 16 var n=isIgnorSelf?nsArray.length-1:nsArray.length;
 17 for(var i=0;i<n;i++){
 18     if(!reg.test(nsArray[i])){throw new Error("Invalid namespace:"+nsArray[i]+"");
 19     return
 20     }
 21     if(i!=0){sNS+="."}
 22     sNS+=nsArray[i];
 23     sEval+="if(typeof("+sNS+")=='undefined') "+sNS+"=new Object();
 24     else "+sNS+";"
 25 }
 26 if(sEval!=""){
 27 return eval(sEval)
 28 }
 29 return{}
 30  
 31 };
 32  
 33 </script> 
 34  </head> 
 35  <body>
 36   <section class="mod-page-body"> 
 37    <div class="mod-page-main wordwrap clearfix"> 
 38     <div class="mod-pageheader"></div> 
 39     <div class="mod-pagecontent"> 
 40      <div class="mod-weixinjsapi"> 
 41       <div class="x-desc">
 42        微信客户端自带的Js Api:WeixinJSBridge
 43       </div> 
 44       <div id="WeixinJsApi"> 
 45        <input type="button" id="imagePreview" value="图片预览" /> 
 46        <input type="button" id="profile" value="查看profile" /> 
 47        <a href="weixin://profile/gh_412d74fbb474">企业微信小助手</a> 
 48        <input type="button" id="shareWeibo" value="分享微博" /> 
 49        <input type="button" id="shareFB" value="分享facebook" /> 
 50        <input type="button" id="addContact" value="添加联系人" /> 
 51        <input type="button" id="scanQRCode" value="扫描二维码" /> 
 52        <input type="button" id="jumpToBizProfile" value="跳转到指定公众账号页面" /> 
 53        <input type="button" id="toggleMenuBtn" value="隐藏右上角按钮" /> 
 54        <input type="button" id="toggleToolbar" value="隐藏底部导航栏" /> 
 55        <input type="button" id="getNetType" value="获取网络状态" /> 
 56        <input type="button" id="closeWindow" value="关闭" /> 
 57        <input type="button" id="getBrandWCPayRequest" value="发起公众号微信支付" /> 
 58        <input type="button" id="setPageState" value="设置页面状态" /> 
 59        <input type="button" id="sendEmail" value="发邮件" /> 
 60        <input type="button" id="openSpecificView" value="微信团队打开webView,跳到指定页面" /> 
 61        <input type="button" id="getCanIAPPay" value="getCanIAPPay" /> 
 62        <input type="button" id="getBrandIAPPayRequest" value="发起公众号IAP支付" /> 
 63        <input type="button" id="openUrlByExtBrowser" value="用safari打开指定链接" /> 
 64        <input type="button" id="openProductView" value="跳转微信商品页" /> 
 65        <input type="button" id="openLocation" value="查看地理位置" /> 
 66        <input type="button" id="timelineCheckIn" value="朋友圈签到" /> 
 67        <input type="button" id="getBrandWCPayCreateCreditCardRequest" value="开通微信信用卡" /> 
 68        <input type="button" id="geoLocation" value="获取地理位置" /> 
 69        <input type="button" id="getInstallState" value="获取某app是否安装" /> 
 70        <input type="button" id="editAddress" value="公众号编辑收货地址" /> 
 71        <input type="button" id="getLatestAddress" value="公众号获取最近的收货地址" /> 
 72        <input type="button" id="launch3rdApp" value="启动第三方APP" /> 
 73        <input type="button" id="jumpWCMall" value="跳转微信商品购买界面" /> 
 74        <input type="button" id="addEmoticon" value="添加表情" /> 
 75        <input type="button" id="cancelAddEmoticon" value="取消下载某表情" /> 
 76        <input type="button" id="hasEmoticon" value="查询是否存在某表情" /> 
 77       </div> 
 78      </div> 
 79     </div> 
 80    </div> 
 81   </section> 
 82   <script>
 83 function onBridgeReady() {
 84     WeixinJSBridge.on('menu:share:appmessage', function(argv) 
 85     {
 86         WeixinJSBridge.invoke('sendAppMessage',{
 87                     "link":"http://m.exmail.qq.com/",
 88                     "desc":"desc",
 89                     "title":"title for WeiXinJsBridge"
 90         }, function(res) {
 91             WeixinJSBridge.log(res.err_msg);
 92         });
 93     });
 94     WeixinJSBridge.on('menu:share:timeline', function(argv) 
 95     {
 96     WeixinJSBridge.invoke("shareTimeline",{
 97         "link":"http://m.exmail.qq.com",
 98         "img_url":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/logo1ca3fe.png",
 99         "img_width":"172",
100         "img_height":"40",
101         "desc":"i am description",
102         "title":"just test from WeixinJsBridge"
103         },
104         function(e){
105         alert(e.err_msg);
106         })
107     });
108 }
109  
110 if (typeof WeixinJSBridge === "undefined"){
111     if (document.addEventListener){
112         document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false);
113     }
114 }else{
115     onBridgeReady();
116 }
117  
118     var menuHidden=!1,toolbarHidden=!1,netType={"network_type:wifi":"wifi网络","network_type:edge":"非wifi,包含3G/2G","network_type:fail":"网络断开连接","network_type:wwan":"2g或者3g"};
119     document.addEventListener("WeixinJSBridgeReady",function(){
120             document.getElementById("imagePreview").addEventListener(
121             "click",function(){
122                                 WeixinJSBridge.invoke("imagePreview",{
123                 "urls":[
124                 "http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/logo1ca3fe.png",
125                 "http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_features1ca3fe.png",
126                 "http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_workStyle1ca3fe.png"
127                 ],
128                 "current":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_features1ca3fe.png"
129                 })
130                         },!1),
131         document.getElementById("profile").addEventListener(
132             "click",function(){
133                 alert("profile clicked");
134                 WeixinJSBridge.invoke("profile",{
135                     "username":"gh_412d74fbb474",
136                     "nickname":"企业微信小助手"    
137                 })
138             },!1),
139         document.getElementById("shareWeibo").addEventListener(
140             "click",function(){
141                 WeixinJSBridge.invoke("shareWeibo",{
142                     "type":"link",
143                     "link":"http://m.exmail.qq.com"
144                 },
145                 function(e){
146                     alert(e.err_msg);
147                 })
148             },!1),
149         document.getElementById("shareFB").addEventListener(
150             "click",function(){
151                 WeixinJSBridge.invoke("shareFB",{
152                     "link":"http://m.exmail.qq.com"
153                 })
154             },!1),
155         document.getElementById("scanQRCode").addEventListener(
156             "click",function(){
157                 WeixinJSBridge.invoke("scanQRCode",{
158                 })
159             },!1),
160         document.getElementById("addEmoticon").addEventListener(
161             "click",function(){
162                 WeixinJSBridge.invoke("addEmoticon",{
163                     "url":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_features1ca3fe.png",
164                     "thumb_url":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/logo1ca3fe.png"
165  
166                 },
167                 function(e){
168                                         alert(e.err_msg);
169                                 })
170             },!1),
171         document.getElementById("cancelAddEmoticon").addEventListener(
172             "click",function(){
173                 WeixinJSBridge.invoke("cancelAddEmoticon",{
174                     "url":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_features1ca3fe.png"
175  
176                 },
177                 function(e){
178                                         alert(e.err_msg);
179                                 })
180             },!1),
181         document.getElementById("hasEmoticon").addEventListener(
182             "click",function(){
183                 WeixinJSBridge.invoke("hasEmoticon",{
184                     "url":"http://rescdn.qqmail.com/bizmail/zh_CN/htmledition/images/bizmail/v3/icons_features1ca3fe.png"
185  
186                 },
187                 function(e){
188                                         alert(e.err_msg);
189                                 })
190             },!1),
191         document.getElementById("addContact").addEventListener(
192             "click",function(){
193                 WeixinJSBridge.invoke("addContact",{
194                     "webtype":"1",
195                     "username":"gh_412d74fbb474"
196                 },
197                 function(e){
198                     alert(e.err_msg);
199                 })
200             },!1),
201         document.getElementById("jumpToBizProfile").addEventListener(
202             "click",function(){
203                 WeixinJSBridge.invoke("jumpToBizProfile",{
204                     "tousername":"gh_2248a2ade13e"
205                 },
206                 function(e){
207                     alert(e.err_msg);
208                 })
209             },!1),
210         document.getElementById("toggleMenuBtn").addEventListener(
211             "click",function(){
212                 menuHidden?
213                 (WeixinJSBridge.call("showOptionMenu"),menuHidden=!1,this.value="隐藏右上角按钮")
214                 :
215                 (WeixinJSBridge.call("hideOptionMenu"),menuHidden=!0,this.value="显示右上角按钮")
216             },!1),
217         document.getElementById("toggleToolbar").addEventListener(
218             "click",function(){
219                 toolbarHidden?
220                 (WeixinJSBridge.call("showToolbar"),toolbarHidden=!1,this.value="隐藏底部导航栏")
221                 :
222                 (WeixinJSBridge.call("hideToolbar"),toolbarHidden=!0,this.value="显示底部导航栏")
223             },!1),
224         document.getElementById("getNetType").addEventListener(
225             "click",function(){
226                 WeixinJSBridge.invoke("getNetworkType",{},
227                     function(e){
228                         alert(netType[e.err_msg])
229                     })
230             },!1),
231          document.getElementById("closeWindow").addEventListener(
232                         "click",function(){
233                                 WeixinJSBridge.invoke("closeWindow",{},function(e){})
234                         },!1),
235         document.getElementById("getBrandWCPayRequest").addEventListener(
236             "click",function(){
237             WeixinJSBridge.invoke("getBrandWCPayRequest",{
238                 "appId" : "wxf8b4f85f3a794e77", //公众号名称,由商户传入
239                 "timeStamp" : "189026618", //时间戳 这里随意使用了一个值
240                 "nonceStr" : "adssdasssd13d", //随机串
241                 "package" :
242                 "body=xxx&fee_type=1&input_charset=GBK&notify_url=http&out_trade_no=16642817866003386000&partner=1900000109&return_url=http&spbill_create_ip=127.0.0.1&total_fee=1&sign=273B7EEEE642A8E41F27213D8517E0E4", //扩展字段,由商户传入
243                 "signType" : "SHA1", //微信签名方式:sha1
244                 "paySign" : "b737015b5b1eabe5db580945a07eac08c7bb55f8" //微信签名
245                 },
246                 function(e){
247                     alert(e.err_msg)
248                 })
249             },!1),
250         document.getElementById("setPageState").addEventListener(
251             "click",function(){
252             WeixinJSBridge.invoke("setPageState",{
253                 "state" : "1"
254                 })
255             },!1),
256  
257         document.getElementById("sendEmail").addEventListener(
258             "click",function(){
259             WeixinJSBridge.invoke("sendEmail",{
260                 "title" : "title!",
261                 "content" : "i am an Email!", //时间戳 这里随意使用了一个值
262                 },
263                 function(e){
264         //          alert(e.err_msg)
265                 })
266             },!1),
267         document.getElementById("openSpecificView").addEventListener(
268             "click",function(){
269             WeixinJSBridge.invoke("openSpecificView",{
270                 "specificview" : "contacts"
271                 },
272                 function(e){
273                     alert(e.err_msg)
274                 })
275             },!1),
276         document.getElementById("getCanIAPPay").addEventListener(
277             "click",function(){
278             WeixinJSBridge.invoke("getCanIAPPay",{  },
279                 function(e){
280                     alert(e.err_msg)
281                 })
282             },!1),
283         document.getElementById("getBrandIAPPayRequest").addEventListener(
284             "click",function(){
285             WeixinJSBridge.invoke("getBrandIAPPayRequest",{
286                 "appId" : "wxf8b4f85f3a794e77", //公众号名称,由商户传入
287                 "timeStamp" : "189026618", //时间戳 这里随意使用了一个值
288                 "nonceStr" : "adssdasssd13d", //随机串
289                 "package" : "bankType=CITIC_CREDIT&bankName=%e4%b8%ad%e4%bf%a1%e9%93%b6%e8%a1%8c&sign=CF8922F49431FFE8A1834D0B32B25CE3",
290                 //扩展字段,由商户传入
291                 "signType" : "SHA1", //微信签名方式:sha1
292                 "paySign" : "1e6f13f78ca0ec43fbb80899087f77568af66987" //微信签名
293                 },
294                 function(e){
295                     alert(e.err_msg)
296                 })
297             },!1),
298         document.getElementById("openLocation").addEventListener(
299             "click",function(){
300             WeixinJSBridge.invoke("openProductView",{   
301                 "latitude" : 23.113, //纬度
302                 "longitude" : 113.23, //经度
303                 "name" : "TIT创意园", //POI名称
304                 "address" : "广州市海珠区新港中路397号", //地址
305                 "scale" : 14, //地图缩放级别
306                 "infoUrl" : "http://weixin.qq.com/", //查看位置界面底部的超链接                
307                 },
308                 function(e){
309                     alert(e.err_msg)
310                 })
311             },!1),
312         document.getElementById("timelineCheckIn").addEventListener(
313             "click",function(){
314             WeixinJSBridge.invoke("timelineCheckIn",{   
315                 "img_url": "http://mmsns.qpic.cn/mmsns/RLllkTm3DUdV24xbZnKicx9jJWxXI0Bq84zzbtibGuRyk/0", // 分享到朋友圈的缩略图
316                 "img_width": "640", // 图片的长度
317                 "img_height": "640", // 图片高度
318                 "link": "http://news.qq.com/zt2012/cxkyym/index.htm", // 连接地址
319                 "desc": "这个是描述啊啊", // 描述
320                 "title": "朝鲜称中国渔船越界捕捞", // 分享标题
321                 "latitude" : 23.113, //纬度
322                 "longitude" : 113.23, //经度
323                 "poiId" : "dianping_2331037", //商户id
324                 "poiName" : "TIT创意园", //POI名称
325                 "poiAddress" : "广州市海珠区新港中路397号", //地址
326                 "poiScale" : 14, //地图缩放级别
327                 "poiInfoUrl" : "http://weixin.qq.com/" //查看位置界面底部的超链接
328                 },
329                 function(e){
330                     alert(e.err_msg)
331                 })
332             },!1),
333         document.getElementById("geoLocation").addEventListener(
334             "click",function(){
335             WeixinJSBridge.invoke("geoLocation",{   
336                 },
337                 function(e){
338                     alert(e.err_msg)
339                 })
340             },!1),
341         document.getElementById("getBrandWCPayCreateCreditCardRequest").addEventListener(
342             "click",function(){
343             WeixinJSBridge.invoke("getBrandWCPayCreateCreditCardRequest",{  
344                 "appId" : "wxf8b4f85f3a794e77", //公众号名称,由商户传入
345                 "timeStamp" : "189026618", //时间戳 这里随意使用了一个值
346                 "nonceStr" : "adssdasssd13d", //随机串
347                 "package" : "bankType=CITIC_CREDIT&bankName=%e4%b8%ad%e4%bf%a1%e9%93%b6%e8%a1%8c&sign= CF8922F49431FFE8A1834D0B32B25CE3",
348                 //扩展字段,由商户传入
349                 "signType" : "SHA1", //微信签名方式:sha1
350                 "paySign" : "1e6f13f78ca0ec43fbb80899087f77568af66987" //微信签名
351                 },
352                 function(e){
353                     alert(e.err_msg)
354                 })
355             },!1),
356         document.getElementById("getInstallState").addEventListener(
357             "click",function(){
358             WeixinJSBridge.invoke("getInstallState",{   
359                     "packageUrl":"teamcircle://"
360                 },
361                 function(e){
362                     alert(e.err_msg)
363                 })
364             },!1),
365         document.getElementById("openProductView").addEventListener(
366             "click",function(){
367             WeixinJSBridge.invoke("openProductView",{   
368                     "productInfo":"json"
369                 },
370                 function(e){
371                     alert(e.err_msg)
372                 })
373             },!1),
374         document.getElementById("getLatestAddress").addEventListener(
375                 "click",function(){
376                 WeixinJSBridge.invoke("getLatestAddress",{  
377                     "appId" : "wxf8b4f85f3a794e77", //公众号名称,由商户传入
378                     "timeStamp" : "189026618", //时间戳 这里随意使用了一个值
379                     "nonceStr" : "adssdasssd13d", //随机串
380                     "signType" : "SHA1", //微信签名方式:sha1
381                     "addrSign" : "b737015b5b1eabe5db580945a07eac08c7bb55f8", //微信签名
382                     "scope"    : "snsapi"
383                 },
384                 function(e){
385                     alert(e.err_msg)
386                 })
387             },!1),
388         document.getElementById("editAddress").addEventListener(
389                 "click",function(){
390                 WeixinJSBridge.invoke("editAddress",{   
391                     "appId" : "wxf8b4f85f3a794e77", //公众号名称,由商户传入
392                     "timeStamp" : "189026618", //时间戳 这里随意使用了一个值
393                     "nonceStr" : "adssdasssd13d", //随机串
394                     "signType" : "SHA1", //微信签名方式:sha1
395                     "addrSign" : "b737015b5b1eabe5db580945a07eac08c7bb55f8", //微信签名
396                     "scope"    : "snsapi"
397                 },
398                 function(e){
399                     alert(e.err_msg)
400                 })
401             },!1),
402         document.getElementById("launch3rdApp").addEventListener(
403                 "click",function(){
404                 WeixinJSBridge.invoke("launch3rdApp",{  
405                     "appId" : "wx5823bf96d3bd56c7", //公众号名称,由商户传入
406                 },
407                 function(e){
408                     alert(e.err_msg)
409                 })
410             },!1),
411         document.getElementById("jumpWCMall").addEventListener(
412                 "click",function(){
413                 WeixinJSBridge.invoke("jumpWCMall",{    
414                     "appId" : "wx5823bf96d3bd56c7", //公众号名称,由商户传入
415                     "funcId":"1000"
416                 },
417                 function(e){
418                     alert(e.err_msg)
419                 })
420             },!1),
421         document.getElementById("openUrlByExtBrowser").addEventListener(
422             "click",function(){
423             WeixinJSBridge.invoke("openUrlByExtBrowser",{
424                 "url" : "http://m.exmail.qq.com"
425                 },
426                 function(e){
427                     alert(e.err_msg)
428                 })
429             },!1)
430         }
431     );
432 </script> 
433  </body>
434 </html>

 

转载于:https://www.cnblogs.com/txw1958/p/WeixinJSBridge-api.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/492780.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

归并排序C++实现

归并排序的核心思想是将两个有序的数列合并成一个大的有序的序列。通过递归&#xff0c;层层合并&#xff0c;即为归并。效率为O(n log n)&#xff0c;是分治法的典型应用。 /* 合并[left,mid),[mid,right)两个有序数组 */ void merge(int *arry, int left, int mid, int righ…

深度学习的时代将结束:25 年 16625 篇论文佐证

来源&#xff1a;云头条作者&#xff1a; Karen Hao丨《麻省理工学院科技评论》杂志的 AI 记者我们分析了16625篇论文&#xff0c;以洞察AI下一步的发展方向我们深入研读了25年来的AI研究论文&#xff0c;结果表明深度学习的时代即将结束。如今你听到的关于AI的几乎所有内容都归…

动态规划基本思想

基本要素&#xff1a; &#xff08;1&#xff09;最优子结构性质 &#xff08;2&#xff09;重叠子问题性质 思想&#xff1a; 动态规划和分治法类似&#xff0c;其基本思想也是将待求解问题分解成若干个子问题&#xff0c;先求解子问题&#xff0c;然后从这些子问题的解得到原…

Deepmind AlphaStar 如何战胜人类职业玩家【中科院自动化所深度解析】

来源&#xff1a;德先生作者&#xff1a;朱圆恒&#xff0c;唐振韬&#xff0c;李伟凡&#xff0c;赵冬斌北京时间2019年1月25日2时&#xff0c;DeepMind在伦敦向世界展示了他们的最新成果——星际争霸2人工智能AlphaStar[1] 。图1. DeepMind AlphaStar挑战星际人类职业玩家直播…

JBoss类加载机制 ClassLoadingConfiguration

http://sylven.iteye.com/blog/577063类仓库优先级从低到高 1.classpath、lib目录 2.由已部署的应用程序的所有类、/server/{server_name}/lib目录里的JAR文件组成 3.deploy目录、或EAR/SAR文件里的WAR文件里的类 指定类加载仓库 SAR META-INF/jboss-service.xml EAR META-INF/…

VS编译器安装Eigen

下载eigen&#xff0c;打开项目属性&#xff0c;C -> 附加目录&#xff0c;添加刚才eigen的存放路径。 参考博客&#xff1a;https://blog.csdn.net/u012428169/article/details/71169546

jquery filter和not

jQuery filter() 方法 filter() 方法允许您规定一个标准。不匹配这个标准的元素会被从集合中删除&#xff0c;匹配的元素会被返回。 下面的例子返回带有类名 "intro" 的所有 <p> 元素&#xff1a; $(document).ready(function(){$("p").filter("…

DNA复制体结构和工作原理首次被揭示

来源&#xff1a;科学网DNA是生命遗传信息的载体&#xff0c;它的复制是生命繁衍过程当中最重要的一步。关于DNA复制分子机制的研究一直是生命科学中最基本的问题之一。近日&#xff0c;美国国立卫生研究院杰出研究员杨薇的课题组揭示了DNA复制体的结构和工作原理&#xff0c;相…

Linux文件查找

为了防止无良网站的爬虫抓取文章&#xff0c;特此标识&#xff0c;转载请注明文章出处。LaplaceDemon/SJQ。 http://www.cnblogs.com/shijiaqi1066/p/4076158.html Linux文件查找相关的命令一般涉及两个命令&#xff1a; locatefindlocate 格式&#xff1a; locate 文件名 loca…

Laplace算子

该算子是对图像的二阶导数&#xff0c; Laplace算子的解释&#xff0c;参考下面博客&#xff1a; https://blog.csdn.net/li_wen01/article/details/72864291

由4G向5G进发的物联网:NB-IoT与LTE-M

来源&#xff1a;北京物联网智能技术应用协会2019年1月16号广东联通联合中兴通信在深圳5G规模测试外场&#xff0c;打通了全球第一个基于3GPP最新协议版本的5G手机外场通话&#xff0c; 率先在5G网络下畅享了微信、视频等精彩应用。本次测试采用了遵循3GPP 2018年9月30日协议版…

Oracle 配置监听和本地网络服务

一、配置监听 在oracle的配置和移植工具中打开Net Configuration Assistant&#xff0c;然后点击下一步。 点击下一步&#xff0c;然后输入监听的名称点击下一步 点击下一步后如图 点击下一步如图 单击下一步如图 选择否&#xff0c;点击下一步 二、配置网络服务 点击下一步&am…

求解逆矩阵的常用三种方法

1.待定系数法 矩阵A 1, 2 -1,-3 假设所求的逆矩阵为 a,b c,d 则 从而可以得出方程组 a 2c 1 b 2d 0 -a - 3c 0 -b - 3d 1 解得 a3; b2; c -1; d -1 2.伴随矩阵求逆矩阵 伴随矩阵是矩阵元素所对应的代数余子式&#xff0c;所构成的矩阵&#xff0c;转置后得到的新矩阵…

半导体行业:国之重器大投入推进

来源&#xff1a;国盛证券▌半导体&#xff1a;十年产业投资大机会中国半导体市场规模占全球比重持续提高。据中国半导体行业协会等统计&#xff0c;2017年受存储器涨价影响和物联网需求推动&#xff0c;全球半导体收入约4122.21亿美元&#xff0c;同比增长16%。预计2018年全球…

「击败星际争霸II职业玩家」的 AlphaStar是在作弊?

来源&#xff1a;机器之心摘要&#xff1a;DeepMind 击败人类职业玩家的方式与他们声称的 AI 使命&#xff0c;以及所声称的『正确』方式完全相反。DeepMind 的人工智能 AlphaStar 一战成名&#xff0c;击败两名人类职业选手。掌声和欢呼之余&#xff0c;它也引起了一些质疑。在…

mongoDB 特别指令用法

http://apluck.iteye.com/blog/1176160 a. 修改collection集合字段名参见&#xff1a;http://www.mongodb.org/display/DOCS/Updating#Updating-%24rename 例&#xff1a; Shell代码 db.test.find() 查出如下数据&#xff1a; Shell代码 { "_id" : ObjectId(&qu…

谷歌大脑的“世界模型”简述与启发

来源&#xff1a;David9的个人博客摘要&#xff1a;我们的视觉看到什么&#xff0c;部分取决于大脑预测未来会看到什么。我们的视觉看到什么&#xff0c;部分取决于大脑预测未来会看到什么&#xff0c;例如下图中&#xff0c;如果你预计要看到突出的球体&#xff0c;那也许你就…

跳台阶算法简单分析

题目为&#xff1a; 一只青蛙一次可以跳上1级台阶&#xff0c;也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 分析&#xff1a; N级&#xff08;N-1&#xff09;级的情况&#xff08;N-2&#xff09;级的情况。 因为两种情况都可以选择&am…

我为什么在这里写博客

做了几年的程序员&#xff0c;学了一些技能&#xff0c;电脑里的资料也越来越多&#xff0c;一直没有去梳理。每次看别人的博客&#xff0c;特别是写得好的博客&#xff0c;心里就痒痒的。也希望把自己的东西整理出来&#xff0c;一来可以给自己所学一个交代&#xff0c;二来可…

TensorFlow的基本介绍及Hello,world

转载自&#xff1a; http://www.tensorfly.cn/tfdoc/get_started/basic_usage.html https://blog.csdn.net/sarsscofy/article/details/78541836 ####基本使用&#xff1a; 使用(graph)来表示计算任务在被称之为 会话 (Session) 的上下文 (context) 中执行图.使用 tensor 表示…