gpt4 book ai didi

node.js - 如何从 antd 将 csrf token 传递给上传组件?

转载 作者:太空宇宙 更新时间:2023-11-04 00:12:56 24 4
gpt4 key购买 nike

在传递 csrf token 时的表单中,我使用隐藏输入来传递 long 值。

<Form method="post" action="/account/user" onSubmit={this.onSubmit}>
<Input name="_csrf" type="hidden" value={this.state.session.csrfToken} onChange={()=>{}}/>
<FormGroup row>
<Label sm={2}>Name:</Label>
<Col sm={10} md={8}>
<Input name="name" value={this.state.name} onChange={this.handleChange}/>
</Col>
</FormGroup>
</Form>

当您有这样的组件时,您如何做到这一点?这是antd的上传组件。

render() {
const props = {
name: 'file',
action: '//localhost/file/upload',
onChange(info) {

}
};

return (
<Dragger {...props}>
// drag and drop area
</Dragger>
)
}

最佳答案

最终成为一个可用的 Prop ,称为我可以包含的标题。希望能对其他人有所帮助。

render() {
const props = {
name: 'file',
action: '//localhost/file/upload',
headers: {
'X-CSRF-Token': 'somelongtokenstring'
}
onChange(info) {

}
};

return (
<Dragger {...props}>
// drag and drop area
</Dragger>
)
}

关于node.js - 如何从 antd 将 csrf token 传递给上传组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48654358/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com