在表格中显示结果

时间:2015-04-02 07:28:36

标签: javascript angularjs

早上好,

我创建了一个脚本,一旦我运行正常,我将在我的网站上实现。

你可以帮我解决一下结果吗?

有一个for循环为我做了一些计算,但结果似乎是在1行而不是在垂直列中,我无法看到我哪里出错,请帮助。

var myApp = angular.module('myApp', []);

var startingValue = 3;
var VXP = [2.41, 2.50, 1.80, 1.56, 1.43, 1.35, 1.30, 1.26, 1.23, 1.20, 1.18, 1.17, 1.16, 1.14, 1.13, 1.13, 1.12, 1.11, 1.11, 1.10, 1.10, 1.09, 1.09, 1.08, 1.08];
var text = "";
var i;

for (i = 0; i < VXP.length; i++) {
    startingValue *= VXP[i];
    vxpResult = text += Math.floor(startingValue);
}


function MyCtrl($scope) {
    $scope.level = i;
    $scope.vxp = vxpResult;
}

http://jsfiddle.net/rppge4cm/2/

1 个答案:

答案 0 :(得分:3)

这是因为你连接了一个长字符串。尝试使用数组来保存值:

var i;
var vxpResult = [];

for (i = 0; i < VXP.length; i++) {
    startingValue *= VXP[i];
    vxpResult.push(Math.floor(startingValue));
}

function MyCtrl($scope) {
    $scope.level = i;
    $scope.vxp = vxpResult;
}

演示: http://jsfiddle.net/rppge4cm/3/