Angular jsonp数据打印

时间:2017-07-12 10:27:45

标签: angularjs http jsonp

我在HTML中打印数据有问题。我必须从服务器打印数据。

这是链接的例子

http://mario.com/jsapp/getdata-new.php?jsonp=2017

看起来:

processData([{"name":"A","open":"0"},{"name":"b","open":"1"}]);

我的ctrl

myApp.controller('liveCurrencyCtrl',  function ($scope, $http) {
$http.get("http://mario.com/jsapp/getdata-new.php?jsonp=2017")
    .then(function (response) { 
        $scope.names = response.data; 
        console.log(response.data);
    });}

这是我的HTML

        <div class="liveCurrencyTable" ng-controller="liveCurrencyCtrl">
            <tr ng-repeat="x in names">
                    {{name}}
            </tr>
        </div>

你知道我必须做什么吗?当我在HTML中打印所有JSON时,我以JSON形式打印它,但我必须逐个元素地打印。 Tnx寻求帮助

1 个答案:

答案 0 :(得分:0)

应该是x

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  version="2.0">

       <xsl:variable name="values">
            <item key="A" value="aa"/>
            <item key="B" value="bb"/>
            ...
        </xsl:variable>

     <xsl:template match="/A">

         <xsl:for-each select="$values">
           <xsl:call-template name="items1">
           <xsl:with-param name="key">aa</xsl:with-param>
           <xsl:with-param name="value">bb</xsl:with-param>
        </xsl:call-template>    
         </xsl:for-each>

         <xsl:for-each select="$values">
           <xsl:call-template name="items2">
           <xsl:with-param name="key">aa</xsl:with-param>
           <xsl:with-param name="value">bb</xsl:with-param>
        </xsl:call-template>     
         </xsl:for-each>
         ...
     </xsl:template>

    <xsl:template name="template1 ">
       <xsl:param name="key"/>
       <xsl:param name="value"/>
       <xsl:value-of select="/D"/>
       <xsl:value-of select="$key"/>
       <xsl:value-of select="$value"/>
       ...
     </xsl:template>

    <xsl:template name="template2">
     <xsl:param name="key"/>
     <xsl:param name="value"/>
     <xsl:value-of select="/E"/>
     <xsl:value-of select="$key"/>
     <xsl:value-of select="$value"/>
     ...
    </xsl:template>

</xsl:stylesheet>