上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 114 下一页
摘要: 1、安装 npm install tinymce -S npm install @tinymce/tinymce-vue -S 如果是v2.x可以安装指定版本 npm install tinymce@5.1.0 -S npm install @tinymce/tinymce-vue@3.0.1 -S 阅读全文
posted @ 2021-04-28 14:46 TBHacker 阅读(506) 评论(0) 推荐(0) 编辑
摘要: --save和--save-dev 在安装包时, 我们可以根据环境决定包的安装效果. 假设我们要安装express 1.执行 npm i express --save 则表示我想在生产环境中使用express, 同时, express的版本信息会被写入package.json中的dependenci 阅读全文
posted @ 2021-04-28 11:19 TBHacker 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 开发环境(development):开发环境是程序猿们专门用于开发的服务器,配置可以比较随意, 为了开发调试方便,一般打开全部错误报告。(程序员接到需求后,开始写代码,开发,运行程序,看看程序有没有达到预期的功能;) 测试环境(testing):一般是克隆一份生产环境的配置,一个程序在测试环境工作不 阅读全文
posted @ 2021-04-28 11:17 TBHacker 阅读(138) 评论(0) 推荐(0) 编辑
摘要: <div> <!-- <input v-model="postModel.title_img" type="text" class="allInput" /> --> <el-upload class="images-uploader" action="#" :http-request="hande 阅读全文
posted @ 2021-04-27 18:30 TBHacker 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 1、安装 npm i element-ui -S 2、引入 import Vue from 'vue'; import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; import App fro 阅读全文
posted @ 2021-04-26 14:31 TBHacker 阅读(3164) 评论(0) 推荐(0) 编辑
摘要: 1、下载(使用开源版本,源码包) https://www.zentao.net/dl/zentao/15.0.rc3/ZenTaoPMS.15.0.rc3.zip 2、解压放入项目文件夹下面 3、配置nginx server { listen 80; #listen [::]:80 default_ 阅读全文
posted @ 2021-04-24 18:15 TBHacker 阅读(119) 评论(0) 推荐(0) 编辑
摘要: v-text 或者 {{ }} 直接把数据渲染出来,有Html标签也不会解析。 <h1 v-text="msg"></h1> <h1>{{ msg }}</h1> v-html 为了输出真正的HTML,可以用v-html指令。 它等同于JS的innerHtml属性。 <div v-html="nam 阅读全文
posted @ 2021-04-22 18:27 TBHacker 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 有这个工具,可以辅助开发vue。 只有在vue项目下,才有效果。 阅读全文
posted @ 2021-04-21 00:11 TBHacker 阅读(303) 评论(0) 推荐(0) 编辑
摘要: step1 把图标加入项目 step2 下载 step3 放入项目 step4 使用 iconName: "icon iconfont iconchaxuntongji" 阅读全文
posted @ 2021-04-20 15:03 TBHacker 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1、创建 vue create app_name 2、开启 npm run serve 3、引入axios sudo yarn add axios 阅读全文
posted @ 2021-04-20 10:48 TBHacker 阅读(60) 评论(0) 推荐(0) 编辑
摘要: sudo yarn global add @vue/cli # vue -V @vue/cli 4.5.12 阅读全文
posted @ 2021-04-20 10:36 TBHacker 阅读(212) 评论(0) 推荐(0) 编辑
摘要: //将用户名进行处理,中间用星号表示 function substr_cut($user_name){ //获取字符串长度 $strlen = mb_strlen($user_name, 'utf-8'); //如果字符创长度小于2,不做任何处理 if($strlen<2){ return $use 阅读全文
posted @ 2021-03-31 15:09 TBHacker 阅读(1424) 评论(0) 推荐(0) 编辑
摘要: /** * 查看通行证 */ public function viewPassCode() { $visitor_id = $this->input_data['visitor_id']; $customer_visitor = M('customer_visitor'); $customer_vi 阅读全文
posted @ 2021-03-30 18:57 TBHacker 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 需要签名比如:【阿里云】xxxx。 只有签名通过的,才可以发送。 需要创建短信模版。 支持验证码,以及各种自定义的消息模版。 新建模版,需要审核,审核通过才可以使用。 阿里云使用,需要配置key,secret。 php中可以先下载sdk。 composer require alibabacloud/ 阅读全文
posted @ 2021-03-09 18:14 TBHacker 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 阿里云接口 /** * 检测人脸 */ public function checkFace($idcard,$name,$img_base64) { $host = "https://zfah.market.alicloudapi.com"; $path = "/efficient/idfaceId 阅读全文
posted @ 2021-03-09 14:13 TBHacker 阅读(1928) 评论(0) 推荐(0) 编辑
摘要: /** * 获取网络图片的Base64编码 * $img_url 网络图片地址 * $hasPre 是否有前缀 * @return string */ public function imgToBase64($img_url,$hasPre = true) { $img_base64 = ''; $ 阅读全文
posted @ 2021-03-08 19:14 TBHacker 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 下载 https://github.com/dragonation/wechat-devtools 有点慢,自己想办法 安装deepin-wine wget -O- https://deepin-wine.i-m.dev/setup.sh | sh 解压 sudo mkdir /opt/wxdt & 阅读全文
posted @ 2021-03-06 11:38 TBHacker 阅读(1128) 评论(0) 推荐(0) 编辑
摘要: controller @RequestMapping(value = "/list") @ResponseBody @ApiOperation("社区列表") public ApiResponse<List<CommunityZone>> list() { return ApiResponseUti 阅读全文
posted @ 2021-03-04 12:14 TBHacker 阅读(663) 评论(0) 推荐(0) 编辑
摘要: Project Object Model,项目对象模型。通过xml可扩展标记语言(EXtensible Markup Language)格式保存的pom.xml文件。作用类似ant的build.xml文件,功能更强大。该文件用于管理:源代码、配置文件、开发者的信息和角色、问题追踪系统、组织信息、项目 阅读全文
posted @ 2021-03-04 10:42 TBHacker 阅读(303) 评论(0) 推荐(0) 编辑
摘要: @Api("主键请求") public class IdRequest { @NotNull(message = "请检查参数,参数为空") private Integer id; public Integer getId() { return id; } public void setId(Int 阅读全文
posted @ 2021-03-04 10:07 TBHacker 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 114 下一页