摘要: 1、调用下面的方法开启一个http监听服务http.HandleFunc("/hello/", helloHandler)err := http.ListenAndServe(":8080", nil)if err= nil { log.Fatal("ListenAndServe: ", err.E 阅读全文
posted @ 2017-11-03 17:48 Zcwan 阅读(2117) 评论(0) 推荐(0) 编辑
摘要: 一、解决:cc1.exe: sorry, unimplemented: 64-bit mode not compiled in: 参考链接:http://blog.csdn.net/mecho/article/details/24305369 二、beego官网开发文档:https://beego. 阅读全文
posted @ 2017-11-03 16:53 Zcwan 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 文章转载自:http://nonfu.me/p/4753.html http://blog.csdn.net/cheng157507947/article/details/44040035 这些都是典型的使用GNU的AUTOCONF和AUTOMAKE产生的程序的安装步骤。 ./configure是用 阅读全文
posted @ 2017-11-02 10:49 Zcwan 阅读(8621) 评论(0) 推荐(0) 编辑
摘要: 一、GO环境配置 1.运行命令进入/usr/local/src目录:cd /usr/local/src 2.下载安装包:运行wget --no-check-certificate https://studygolang.com/dl/golang/go1.9.2.linux-amd64.tar.gz 阅读全文
posted @ 2017-11-01 17:56 Zcwan 阅读(370) 评论(0) 推荐(0) 编辑
摘要: Google Developers 中国官网:https://developers.google.cn, Android 中国官网:https://developer.android.google.cn/index.html, 以及 Firebase 中国官网:https://firebase.go 阅读全文
posted @ 2017-09-25 20:38 Zcwan 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 项目中需要使用到Sqlite本地数据库保存数据,以防止离线情况下设备的正常使用。 一、下载vs2015下的sqlite插件,并安装 插件下载页面:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki 注意:只能下载 阅读全文
posted @ 2017-05-10 10:24 Zcwan 阅读(6084) 评论(0) 推荐(0) 编辑
摘要: 文章中的内容以及解决思路参考(转载)的 http://www.jb51.net/article/88698.htm 在WPF项目中通过HttpClient向后端的WebAPI工程发送HTTP的Post请求时返回了下图所示的异常信息: "超过了最大请求长度"的异常,是因为发送的请求包含了一帧1080p 阅读全文
posted @ 2017-04-27 11:16 Zcwan 阅读(2150) 评论(0) 推荐(0) 编辑
摘要: WebAPI项目中遇到了需要调用32位C++的dll的情况,调试的时候能正常调用,但是发布了之后部署在IIS中出现了BadFormatImage异常, 解决方法是在IIS中相应应用程序池=》高级设置=》启用32位 应用程序,如果还不能解决可以将dll拷贝到C:\Windows\SysWOW64目录下 阅读全文
posted @ 2017-04-27 09:42 Zcwan 阅读(696) 评论(0) 推荐(0) 编辑
摘要: SQLServer 配置远程连接 阅读全文
posted @ 2017-04-26 17:49 Zcwan 阅读(24763) 评论(1) 推荐(1) 编辑