WCF 4.0 安静的 URL

发布于 2024-11-08 18:02:10 字数 379 浏览 0 评论 0原文

我怎样才能在基于ron jacobs 教程 采用以下格式

Example /customer/{apikey}/{other or no parameter}

Currently am only able to achieve the following /customer?apikey=8484734739-43948&parm2=ui

How can i be able to have the apikey on a wcf 4.0 restful service based on the ron jacobs tutorial to be in the following format

Example /customer/{apikey}/{other or no parameter}

Currently am only able to achieve the following /customer?apikey=8484734739-43948&parm2=ui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剩余の解释 2024-11-15 18:02:10

警告:我不使用 Jquery,我从某个随机网站复制了这个并对其进行了一些更改。

jQuery.ajaxSetup({
    'beforeSend': function(xhr) {xhr.setRequestHeader("Authorization", "myapikey 8484734739-43948")}
})

Warning: I don't do Jquery, I copied this off some random web site and changed it a bit.

jQuery.ajaxSetup({
    'beforeSend': function(xhr) {xhr.setRequestHeader("Authorization", "myapikey 8484734739-43948")}
})
没企图 2024-11-15 18:02:10

仅供参考:

要将 api 密钥附加到所有请求,请使用以下代码:

jQuery.ajaxSetup({
  data: {
    apiKey: '8484734739-43948'
    ,parm2: 'ui'
  }
});

Simply for reference:

To append the api key to all requests, use the following code:

jQuery.ajaxSetup({
  data: {
    apiKey: '8484734739-43948'
    ,parm2: 'ui'
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文