0

我正在调用一个 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>
    

4

1 回答 1

0

我不能从您的源代码中完全看出,但在我们在开发人员门户上使用的 DotLiquid 模板中,模板变量目前是固定的。请将您的功能请求添加到我们的反馈门户http://aka.ms/apimwish以在每个模板中包含用户变量

于 2016-06-06T17:07:04.463 回答