logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

JSON.NET Error Self referencing loop detected for type

我们在使用JsonConvert.SerializeObject 把对象转换为json格式出现以下错误其他信息: Self referencing loop detected for property解决办法如下:json.net serializer supports to ignore circular reference on global setting

vue watch监控对象

1、普通的watchdata() {return {frontPoints: 0}},watch: {frontPoints(newValue, oldValue) {console.log(newValue)}} 2、数组的watchdata() {return {winChip...

vue-cli3.0 报错:eslint-disable-next-line to ignore the next line.

关闭vue-cli3.0 报错:eslint-disable-next-line to ignore the next line. 注意我这里是VUE3.0解决方法找到文件vue.config.js修改lintOnSave 为false,如果没有就添加lintOnSave 为false...

axios post 参数传递

刚开始使用Vue,里面的坑是一个接一个,今天就遇到一个axios POST传参的问题,我需要在请求中传递参数,然后按官方文档的格式开始操作,代码如下:axios.post('/user', {    firstName: 'Fred',    lastName: 'Flintstone'  })  .then(function (response) {    console.log(...

vue cli3 引用外部js方法

vue引用webVideoCtrl.js1、在vue.config.js中添加chainWebpack: config => {config.resolve.alias.set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components')).set...

vuex 中在一个action方法中调用另一个action方法

在另外一个 action 中也可以:actions: {// ...actionB ({ dispatch, commit }) {return dispatch('actionA').then(() => {commit('someOtherMutation')})}}

kafka客户端获取消息慢分析与解决

正在使用的kafka客户端数据突然滞后了,于是我花了两天的时间对系统进行分析。1、检查程序前不久改过程序,添加了搜索引擎的索引目录,于是我退回原来的版本,发现数据还是滞后2、检查kafka所在的内网网络也是正常的3、检查kafka的配置,发现kafka的topic的分区数据是15根据网上的建议的提高客户端获取数据效率的方法  1、增加分区  2、增加机器我把分区增加到60,速度确实快的很多,但发现

到底了