2017年4月7日
摘要: 正确安装 完node 和npm windows下 卸载: npm uninstall -g express 安装指定版本: npm install -g express@4.15.2 我这是安装 4.*多,装完 还需要 安装 npm install -g express-generator 进入要新 阅读全文
posted @ 2017-04-07 17:25 allen817 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 因为是动态添加的内容,所以想要使用click事件,需要给他用on绑定一下: $(document).on("click",".next_button",function(){ alert(); }); 这个时候,使用苹果手机访问的时候,发现了一个坑爹的问题,如论如何点击“下一步”,都没有任何反应,可 阅读全文
posted @ 2017-04-07 15:32 allen817 阅读(1577) 评论(0) 推荐(0) 编辑
  2017年4月6日
摘要: public static function get_chinese_substr($str,$size = 20){ $rule = '/([a-zA-Z0-9]+)/';//这里没有用,或空格来分割是为了组装时把这个空格或符号保存下来 $arr = preg_split($rule,$str,0 阅读全文
posted @ 2017-04-06 17:36 allen817 阅读(183) 评论(0) 推荐(0) 编辑
  2016年12月29日
摘要: $sql = 'select max(price.price) as max_price,min(price.price) as min_price, c.id,c.pid,c.name,c.pic,p.title,p.id as pro_id,p.title from xy_product_cat 阅读全文
posted @ 2016-12-29 09:46 allen817 阅读(123) 评论(0) 推荐(0) 编辑
  2016年12月13日
摘要: 缺少这些库时,安装 : apt-get install php5-gd 就可以。 阅读全文
posted @ 2016-12-13 11:43 allen817 阅读(866) 评论(0) 推荐(0) 编辑
  2016年11月8日
摘要: 参考网址:http://www.mrfangge.com/facebook-page-share-settings/ 首先在facebook 注册开发者,新增一个应用,这里就要一个生所的应用 app_id 和 应用指定的域名 下面的就是简单了 (以下内容来自 http://www.mrfangge. 阅读全文
posted @ 2016-11-08 11:03 allen817 阅读(650) 评论(0) 推荐(0) 编辑
  2016年8月26日
摘要: 之前做的几个 站session在跨页时也不会丢失(都在同一台服务器,所以我排除了服务器配置问题),这次居然很奇怪的发生的,在火狐上有,在ie, 谷哥上没有session,看了很多网上的贴子 其中有一个网友的有点效果 配置里加上 以下来自http://www.daixiaorui.com/read/9 阅读全文
posted @ 2016-08-26 09:53 allen817 阅读(2593) 评论(0) 推荐(0) 编辑
  2016年8月25日
摘要: 1.MODEL 如关联user table public function getUser(){ return$this->hasOne(User::className(),['id'=>'uid']); //关联字段 } 2.COTROLLER $excelModel = Capital::fin 阅读全文
posted @ 2016-08-25 09:11 allen817 阅读(363) 评论(0) 推荐(0) 编辑
  2016年6月23日
摘要: yii 版本是2.0 .8 我 js 目录 web->js->login.js 页面引入js方法一: $this->registerJsFile('@web/js/login.js',['depends'=>['app\assets\AppAsset']]); 红色必需 页面引入js方法二: 直接在 阅读全文
posted @ 2016-06-23 13:38 allen817 阅读(264) 评论(0) 推荐(0) 编辑
  2016年6月22日
摘要: yii 版本2.08 yii 验证码问题 1.模型里加入'verifyCode', 'captcha','message'=>'error','captchaAction' => 'test/captcha' * 这个要配置指定的方法'captchaAction' => 'test/captcha' 阅读全文
posted @ 2016-06-22 09:10 allen817 阅读(144) 评论(0) 推荐(0) 编辑