我正在设计API,但这是一个问题:
?merchantCategoryName=[Adult,Fantasy,Mac]
&mappedCategoryID=[701,80,22]
&merchantID=36330&outputType=xml
这是理想的情况,但如果merchantCategoryName
包含这样的逗号,那该怎么办:(Ad,ult
是merchantCategoryName
)
?merchantCategoryName=[Ad,ult,Fantasy,Mac]
&mappedCategoryID=[701,80,22]
&merchantID=36330&outputType=xml
然后将是无序,如果我使用base64
它似乎不起作用,如果我使用htmlentities
似乎,
的实体是,
。那我怎么解决这个问题呢?
答案 0 :(得分:0)
您可以使用以下格式:
?merchantCategoryName[]=Adult&
merchantCategoryName[]=Fantasy&
merchantCategoryName[]=Mac&
merchantID=36330&
outputType=xml
有关详细信息,请参阅this问题