API管理门户Azure模板限制

时间:2016-06-06 11:13:56

标签: javascript jquery azure-api-management dotliquid

我正在调用api并以json格式获取一些值现在我想根据我从api获得的响应来限制客户端的某些用户。例如,如果用户是访客,那么它没有显示订阅按钮,否则它没有。在开发人员门户中,我们使用DotLiquid视图引擎。现在我有一个问题,我怎么能在dotliquid中使用它。这是我的代码,我使用Jquery获取数据和javascript来限制客户端的用户

代码

<script   src="https://code.jquery.com/jquery-2.2.4.js"   integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI="   crossorigin="anonymous"></script>
<script>
var root = 'https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false';

$(document).ready(function () {
        var showData1;
  $('#get-data').click(function () {
    var showData;

    jQuery.ajax({
    url: "https://httpbin.org/get",
    dataType:'json',
    success:function(response)
    {
        $('#a').html(response.origin );
        $('#b').html(response.url );
          if(response.url=="https://httpbin.org/get"){
      $("#a").fadeOut(1000);
  }
    }
    });

    showData.text('Loading the JSON file.');
  });
  
  

});
</script>


<!DOCTYPE html>


    <a href="#" id="get-data">Get JSON data</a>
    <div id="show-data"></div>
    <p id="a"></p>
    <p id="b"></p>
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    

1 个答案:

答案 0 :(得分:0)

我无法从您的源代码中了解到,但在我们在开发人员门户网站上使用的DotLiquid模板中,模板变量目前已得到修复。请将您的功能请求添加到我们的反馈门户http://aka.ms/apimwish

的每个模板中