如何在excel表格中分解店铺指标?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在excel表格中分解店铺指标?相关的知识,希望对你有一定的参考价值。
参考技术A 要有具体的数据和详细要求才可以找方法的,一万种要求可能有一万种不同的方法。只有看到原表数据和了解你的详细要求,才能准确做出你需要的方案。追答
需要可继续追问或者私信。不管是公式(函数),数据透视表,SQL语句和VBA代码,总有适合你的解决办法
参考技术B 没有具体数据,网友想帮你都无从下手。如何在多个文件中分解 REACTJS 中的 Axios 调用?
【中文标题】如何在多个文件中分解 REACTJS 中的 Axios 调用?【英文标题】:How to break up an Axios call in REACTJS in multiple files? 【发布时间】:2019-11-12 06:37:15 【问题描述】:我的项目正在多个文件中进行 Axios 调用,我想对其进行调制并将调用作为道具传递给需要它的其他文件。
这是我的 componentDidMount() 方法,它有调用:
componentDidMount ()
document.body.style = 'background: #b8bab2;'
// Retrieve projects data
axios.get('/env?var=READER_HOSTNAME').then(response =>
return axios.get(`$response.data.var/graphql?query=$queries.allProjects()`)
).then(response =>
this.setState(
projects: response.data.data.projects,
visible: response.data.data.projects,
isLoaded: true
)
)
【问题讨论】:
【参考方案1】:您可以创建一个higher order component。
import React, Component from 'react'
export default withData = MyComponent =>
return class MyComponentWithData extends Component
state = projects: null, visible: null, isLoaded: false
componentDidMount()
// Retrieve projects data
axios.get('/env?var=READER_HOSTNAME')
.then(response =>
return axios.get(`$response.data.var/graphql?query=$queries.allProjects()`)
).then(response =>
const projects = response.data.data
this.setState(
projects,
visible: projects,
isLoaded: true
)
)
render()
const projects, visible, isLoaded = this.state
if (!isLoaded)
return null
return (
<MyComponent
...this.props
projects=projects
visible=visible
isLoaded=isLoaded
/>
)
将withData
导入到您要使用的组件中,如下所示:
class SomeComponent extends Component
// ... component code
export default withData(SomeComponent)
【讨论】:
以上是关于如何在excel表格中分解店铺指标?的主要内容,如果未能解决你的问题,请参考以下文章