render函数里面实现佛如循环的写法

Posted jeneryyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了render函数里面实现佛如循环的写法相关的知识,希望对你有一定的参考价值。

核心代码
render: (h, params) => { let texts = ‘‘; //表格列显示文字 let index = params.row.IpAddress.indexOf(‘,‘) if (params.row.IpAddress !== null) { if (index > -1) { texts = params.row.IpAddress.substring(0, index) + "..."; } else { texts = params.row.IpAddress; } } let IPArr = params.row.IpAddress.split(‘,‘) // console.log(‘组合的数组是:‘, IPArr) return h(‘Tooltip‘, { props: { // content: params.row.IpAddress, placement: "left-start" }, style: { cursor: ‘pointer‘ } },[ texts, IPArr.map(function (item,index) { return h(‘div‘,{ slot: ‘content‘, style: { whiteSpace: ‘normal‘, wordWrap: ‘break-word‘ } }, [ h(‘p‘ , item) ]) }) ]) // return h(‘Tooltip‘, { // props: { // // content: params.row.IpAddress, // placement: "left-start" // }, // style: { // cursor: ‘pointer‘ // } // }, [ // // h(‘span‘, params.row.IpAddress) // texts, // h(‘div‘, { // slot: ‘content‘, // style: { // whiteSpace: ‘normal‘, // wordWrap: ‘break-word‘ // } // }, [ // h(‘p‘ , IPArr[0]), // h(‘p‘ , IPArr[1]), // h(‘p‘ , IPArr[2]), // h(‘p‘ , IPArr[3]) // ]) // ]) }

 


以上是关于render函数里面实现佛如循环的写法的主要内容,如果未能解决你的问题,请参考以下文章

iview的table中点击Icon弹Poptip,render函数的写法

ZF_react 高阶组件 多个context的实现 render props Purcomponent的实现 React.memo的实现

java里面的这种写法是啥意思?

reactjs中的render和class里面的函数

C#VS快捷键

C#VS快捷键