WCF 和可选参数
我刚刚开始将 WCF 与 REST 和 UriTemplates 结合使用。现在可以使用可选参数吗?
如果没有,你们会建议我为一个具有三个参数(始终在 url 中使用)和其他可选参数(数量不同)的系统做什么?
示例:
https://example.com/?id=ID&type=GameID&language=LanguageCode&mode=free
- id、类型、语言始终存在
- 模式是可选的
I just started using WCF with REST and UriTemplates. Is it now possible to use optional parameters?
If not, what would you guys recommend I do for a system that has three parameters that are always used in the url, and others that are optional (varying amount)?
Example:
https://example.com/?id=ID&type=GameID&language=LanguageCode&mode=free
- id, type, language are always present
- mode is optional
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚用 WCF 4 测试了它,它工作没有任何问题。如果我不在查询字符串中使用模式,我将得到 null 作为参数值:
方法实现:
对我来说,看起来所有查询字符串参数都是可选的。如果查询字符串中不存在参数,则其类型将具有默认值 =>
null
表示string
,0 表示int
,等等 MS 还指出应该实现这一点。无论如何,您始终可以使用
id
、type
和language
定义UriTemplate
并通过访问方法内的可选参数WebOperationContext
:I just tested it with WCF 4 and it worked without any problems. If I don't use mode in query string I will get null as parameter's value:
Method implementation:
For me it looks like all query string parameters are optional. If a parameter is not present in query string it will have default value for its type =>
null
forstring
, 0 forint
, etc. MS also states that this should be implemented.Anyway you can always define
UriTemplate
withid
,type
andlanguage
and access optional parameters inside method byWebOperationContext
:我尝试过在宁静的网络服务中使用可选参数,
如果我们不在参数值中传递任何内容,它将保持为空。之后我们可以检查
函数中的 null 或空。如果它为空,则不要使用它,否则您可以使用它。
假设我有下面的代码
,这里第 1 部分是强制性的,第 2 部分是可选的。
现在该函数看起来像
您也可以根据您的要求进行转换。
I have tried with optional parameters in restful web service,
If we do not pass anything in parameter value it remains null. After that we can check for
the null or empty in function. If it is null then don't use it, else you can use it.
Let say I have below code
Here part1 is compulsory and part2 is optional.
Now the function would look like
You can also make the conversion based on your requirements.
你必须使用“?”网址中后跟“/”。
例子:
You have to use "?" followed by "/" in your Url.
example: