Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 web 服务调用将哈希标识符传递给服务器。哈希值在标头中传递。如果有多个哈希值,建议采用以下哪种实现方式:
1) 多个标头 - 每个散列标识符一个 2) 单个标头 - 将散列值与分隔符组合
哪一个更好?有没有更好的办法?
只要(散列的长度 * 要发送的散列数)是合理的(<4K),那么单个标头值就可以了……如果您使用倍数,您可能希望在标头中对它们进行编号,如“APP_HASH_1”、“APP_HASH_2”等。