gpt4 book ai didi

php - 如何在 ruby​​ 中对 json 进行 url 编码

转载 作者:数据小太阳 更新时间:2023-10-29 08:04:23 26 4
gpt4 key购买 nike

我想使用 ruby​​ 方法对收件人 json 进行编码, 下面是示例代码,

recipients = 
{
"1JzSZFs2DQke2B3S4pBxaNaMzzVZaG4Cqh": 100000000,
"12Cf6nCcRtKERh9cQm3Z29c9MWvQuFSxvT": 1500000000,
"1dice6YgEVBf88erBFra9BHf6ZMoyvG88": 200000000
}

php 中的 url 格式示例,

<?

$guid="GUID_HERE";
$firstpassword="PASSWORD_HERE";
$secondpassword="PASSWORD_HERE";
$amounta = "10000000";
$amountb = "400000";
$addressa = "1A8JiWcwvpY7tAopUkSnGuEYHmzGYfZPiq";
$addressb = "1ExD2je6UNxL5oSu6iPUhn9Ta7UrN8bjBy";
$recipients = urlencode('{
"'.$addressa.'": '.$amounta.',
"'.$addressb.'": '.$amountb.'
}');

$json_url = "http://blockchain.info/merchant/$guid/sendmany?password=$firstpassword&second_password=$secondpassword&recipients=$recipients";

如何使用 ruby​​ 完成此 urlencode?

最佳答案

使用URI.escape

require 'uri'

enc_uri = URI.escape("http://example.com/?a=\11\15")
p enc_uri
# => "http://example.com/?a=%09%0D"

关于php - 如何在 ruby​​ 中对 json 进行 url 编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21772318/

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