如何在 ColdFusion 中设置以下输入/输出变量?
如何在正确的 Coldfusion 代码中创建输入/输出变量?
输入: 变量.s3_target_directory 变量.文件名 变量.file_location
OUTPUT:
variables.success
variables.transactionid / success UUID
variables.s3_location - link can be http or https
how do I make the input/output variables in proper coldfusion code?
Variables
INPUT:
variables.s3_target_directory
variables.file_name
variables.file_location
OUTPUT:
variables.success
variables.transactionid / success UUID
variables.s3_location - link can be http or https
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不是 100% 我理解你的问题,但这是你设置变量的方法:
然后你像这样输出它:
如果这不是你想要的,你将不得不在你的问题中提供更多细节。
I'm not 100% I understand your questin, but here's how you set a variable:
And you output it like this:
If that's not what you're after, you're going to have to provide more detail in your question.
// 重要提示:在此处设置您的密钥、访问密钥和存储桶
变量.accessKeyId = "";
变量.secretAccessKey = "";
Variables.BucketName='cic-audio'; // 在此输入您的存储桶名称
// IMPORTANT: Set your key, accesskey and bucket here
Variables.accessKeyId = "";
Variables.secretAccessKey = "";
Variables.BucketName='cic-audio'; // Put your bucket name here