上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1下载对应的JDK,并安装 查看是否成功 java -version 2配置环境变量 sudo vim /etc/profile 入一下内容: JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_102.jdk/Contents/Home/" 阅读全文
posted @ 2018-03-26 15:20 Dzs 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1 添加图标 ionic cordova resources [<platform>] 官方https://ionicframework.com/docs/cli/cordova/resources/ Icons: https://cordova.apache.org/docs/en/latest/ 阅读全文
posted @ 2018-02-23 15:06 Dzs 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 默认的是TCP连接方式,如果需要WebSocket,则需要更改Gateway方式, 服务端协议要和客户端协议一致才能通讯。客户端是websocket协议,服务端也要设置成websocket协议.默认为tcp [start_gateway.php] $gateway = new Gateway("we 阅读全文
posted @ 2018-01-19 16:00 Dzs 阅读(406) 评论(0) 推荐(0) 编辑
摘要: SHOW TABLE STATUS FROM `DB_NAME` WHERE ENGINE IS NOT NULL; SHOW TABLE STATUS FROM `DB_NAME` WHERE NAME IN ('table_1','table_2') AND ENGINE IS NOT NULL 阅读全文
posted @ 2018-01-08 19:55 Dzs 阅读(370) 评论(0) 推荐(0) 编辑
摘要: <?php function make_directory($ftp_stream, $dir){ // if directory already exists or can be immediately created return true if (ftp_is_dir($ftp_stream, $dir) || @ftp_mkdir($ftp_stream, $dir)) retu... 阅读全文
posted @ 2018-01-08 19:42 Dzs 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 结合SoapDiscovery实现简单的WebService服务 1 修改php.ini文件 php_soap.dll extension=php_soap.dll 2 WebService 实现主要步骤 生成wsdl描述文件 使用SoapServer注册服务 使用SoapClient调用服务 3 阅读全文
posted @ 2018-01-02 14:51 Dzs 阅读(942) 评论(0) 推荐(0) 编辑
摘要: 配置app.module.ts //将此条目添加到providersin NgModule eg:https://ionicframework.com/docs/pro/monitoring/ 阅读全文
posted @ 2017-12-26 14:12 Dzs 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 使用不同的存储库结构官方为 { "scripts": { "install": "cd path-to/your-app && npm install", "build": "cd path-to/your-app && ./node_modules/.bin/ionic-app-scripts b 阅读全文
posted @ 2017-12-26 11:20 Dzs 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 访问node.js官网(https://nodejs.org/en/download/),下载相应的版本。 下载完,点击安装 【默认目录】 Node.js v8.9.3 to /usr/local/bin/node npm v5.5.1 to /usr/local/bin/npm 安装完毕 node 阅读全文
posted @ 2017-12-25 20:38 Dzs 阅读(238) 评论(0) 推荐(0) 编辑
摘要: log 通过配置Web.config来完成 1 数据库增加 ‘前缀_log’表 2 配置Web.config 'bootstrap' => ['log'], 'components' =>[ 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, //级别 'ta 阅读全文
posted @ 2017-04-06 17:36 Dzs 阅读(802) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页