上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
  2018年11月7日
摘要: https://www.imooc.com/search/course?words=R 阅读全文
posted @ 2018-11-07 09:13 苏上话 阅读(106) 评论(0) 推荐(0) 编辑
  2018年11月6日
摘要: 一、Django简介 开放源代码的Web应用框架,由Python语言编写...... 重点:一个大而全的框架,啥都替你考虑好了。 二、我们学Django学的是什么? 1. 目录结构规范 2. urls路由方式 3. settings配置 4. ORM操作 5. jinja2模板渲染 6.其它 三、我 阅读全文
posted @ 2018-11-06 20:41 苏上话 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 安装Django之前需要安装 python 1、一键安装 >>> pip install Django 2、源码安装 下载源码 并进入源码目录 (注意需要管理员权限) >>> python setup.py install # 执行安装命令 源码下载地址 https://github.com/dja 阅读全文
posted @ 2018-11-06 20:32 苏上话 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 记录Windows搭建git服务器 服务器安装主要分四步: 1、安装Git,一路默认即可。 2、安装copssh,一路默认即可。 3、配置copssh。 打开 copssh control panel a、添加用户账号 也就是后续 登录服务器的用户名 b、为了使服务器认识我们的公钥,需要将密钥对中的 阅读全文
posted @ 2018-11-06 14:17 苏上话 阅读(2854) 评论(1) 推荐(0) 编辑
  2018年10月17日
摘要: 1、PyInstaller是一个第三方库,通过对源文件打包,Python程序可以在没有安装 Python的环境中运行。 2、在命令行使用pip install pyinstaller安装即可。(win+r,输入cmd,打开命令行) 3、将cmd的目录切换至(命令:cd 文件路径(注意空格))需要打包 阅读全文
posted @ 2018-10-17 20:34 苏上话 阅读(1430) 评论(0) 推荐(0) 编辑
  2016年5月10日
摘要: Newtonsoft.Json.dll public class ErrorInfo { public error_response error_response { get; set; } } public class error_response { public string code { g 阅读全文
posted @ 2016-05-10 16:49 苏上话 阅读(669) 评论(0) 推荐(0) 编辑
  2016年4月18日
摘要: 1、添加对 AjaxPro.2.dll 的引用 2、在 webconfig 中 system.web 节点下 进行如下配置 3、注册类方法 4、前台直接调用 demo 示例 阅读全文
posted @ 2016-04-18 17:15 苏上话 阅读(215) 评论(0) 推荐(0) 编辑
  2016年4月14日
摘要: js 获取mac地址 阅读全文
posted @ 2016-04-14 13:52 苏上话 阅读(26148) 评论(5) 推荐(0) 编辑
  2016年4月11日
摘要: FTP连接上传 文件报错 windows无法访问此文件夹。请确保输入的文件名是否正确,并且您有权访问此文件。。 解决办法 : IE设置为脱机使用,文件浏览器登录ftp时调用IE浏览器,所以无法连接,取消脱机就好了。 1、 打开IE的菜单"工具"-"Internet 选项";2、 点击“高级”标签卡; 阅读全文
posted @ 2016-04-11 16:00 苏上话 阅读(334) 评论(0) 推荐(0) 编辑
  2016年4月6日
摘要: /// /// DataTable 对象 转换为Json 字符串 /// /// /// public static string ToJson(this DataTable dt) { JavaScriptSerializer javaScriptSerializ... 阅读全文
posted @ 2016-04-06 10:15 苏上话 阅读(156) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页