-
Notifications
You must be signed in to change notification settings - Fork 22
Uri ? & =
曾璐 edited this page Dec 27, 2016
·
2 revisions
Uri+方法(GetData)+ ? + key=value & key=value ……
?表示允许不存在,即key可以是不存在的(服务器不接收)
value可以为空,即
…?name=&password=123
键值对之间用&(与符号)连接
key之间可以对调位置,无影响,即
…?name=zl&password=123
…?password=123&name=zl
WCF Rest风格
UriTemplate采用"方法名/{参数名}"方式
不再使用键值对方式,不支持