我怀疑将json作为字符串参数传递给API是否正确/可接受的技术?将json作为字符串变量传递给API方法时,有什么含义吗?请指教
答案 0 :(得分:2)
是,但请检查字符串是否正确。 您可以使用以下网址检查json:https://jsonlint.com/
答案 1 :(得分:1)
这没有任何问题。 Json只是一个格式良好的字符串,易于人和机器阅读。所以它应该作为字符串发送:)
答案 2 :(得分:0)
<?php
// 1 QUESTION
// class home_class
// {
// function test()
// {
// echo "Hello World Message";
// }
// }
// $res = new home_class;
// echo $res->test();
// 1 QUESTION
// $country = array("India","USA","UK");
// foreach($country as $row) {
// echo "Contry Name:".$row . "<br>";
// }
// $jsoncountry = array();
// foreach($country as $row) {
// $jsoncountry[]["Contry Name"] = $row;
// }
// print_r(json_encode($jsoncountry));
// Since there is no one-size-fits-all solution to the challenges that images pose, you must carefully consider how you want to manage them based on the unique needs of your content.
?>