logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

php 操作jira REST API

创建 POST:jiraHost . "/rest/api/2/issue"更新 PUT:jiraHost . "/rest/api/2/issue/" . $issueKey上传附件 POST:jiraHost . '/rest/api/2/issue/' . $issueKey . '/attachments'详情 GET:jiraHost . '/rest/api/2/issue/' . $

#php
elasticsearch-PHP 查询语法 query、match_phrase,range,filter - terms

1、query - must - match_phrase ,根据字段值完全匹配foreach ($condition as $key => $value) {$query['bool']['must'][]['match_phrase'] = array($key => $val...

el-tree 父组件数据双向绑定更新、on-check、check-change

<template><div><div><el-inputplaceholder="Search"size="small"v-model="filterText"clearable@keyup.enter.native="onSearch"@clear="onSearch"></el-input&g...

#elementui#vue.js#javascript
vue store sessionStorage localStorage 解决http请求异步

vuex store:数据存储是响应式的;数据放在内存里;生命周期是每次刷新会初始化个人理解就是store中的数据在发生改变后都会同步到所有使用的组件中;比如:如果页面渲染有依赖这些数据,则会出发重新渲染缺点:刷新则会初始化sessionStorage:会话缓存;存在浏览器里,生命周期是本窗口(一个标签页)sessionStorage仅对当前标签页有效(tab),当打开新的标签页...

vue 遍历对象foreach for in

对象结构:info = {name: "xiaoming", age: 10, grade: "二年级"}foreach:Object.keys(info).foreach((value, key) => {console.log(value)})for in:for (let i in info) {console.log(info[i])...

vue path.resolve()

为什么要使用path.resolve() 方法?解答:1)官网解释:path.resolve() 方法将路径或路径片段的序列解析为绝对路径。2)根据操作实例,path.resolve() 方法对参数中路径的操作也是为了达到拼接路径的效果;3)实际上得到的路径结果,相当于对参数路径进行了一系列”cd”操作,看下图实例path.resolve('path1', 'path2')...

vue实现点击按钮“查看详情”弹窗展示详情列表

html:<template><div><Modal v-model="classStatus" width="900" title="详情:" :styles="{top: '80px'}"><Table stripe class="task-table" :columns="columnsName4" :data="...

mac 安装 MySQL-python

1、pip 安装sudo pip install MySQL-python2、报错:IndexError: string index out of range解决方案:vim /usr/local/bin/mysql_config找到 libs,修改为下图所示:3、继续 pip 安装sudo pip install MySQL-python4、报错:ld:...

echarts 图居中

template:<Card class="card-style"><divclass="siggle-chart"id="histogram"></div></Card>style:.card-style {height:...

到底了