Member 12464509
привет вы можете попробовать этот способ
создайте папку и поместите HTML-файл и файл контроллера в одно и то же место. Я создал папку на рабочем столе, затем сначала создал HTML-файл, а затем создал файл контроллера внутри папки рабочего стола.
Шаг 1: Создание index.html файл.
откройте блокнот и вставьте ниже код, и я сохранил его как "index.html" :
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.min.js"></script>
<script src="testController.js"></script>
</head>
<div ng-app="myApp" ng-controller="testCtrl">
<table border="1">
<tr ng-repeat="item in orders">
<td> {{item.item_qty}} </td>
<td> {{item.product_name}} </td>
<td> {{item.status}} </td>
<td> {{item.product_price}}</td>
<td> Sum: {{item.item_qty + item.product_price}} </td>
</tr>
</table>
</div>
</html>
Шаг 2: Создание
testController.js файл.
откройте блокнот и вставьте приведенный ниже код и сохраните файл как "testController.js" :
angular.module('myApp', []).controller('testCtrl', function($scope) {
$scope.orders = [
{item_qty:10,product_name:'Test1', status: '', product_price: 350},
{item_qty:3,product_name:'Test2', status: '', product_price: 100},
{item_qty:25,product_name:'Test3', status: '', product_price: 200}
];
});
как только оба файла будут созданы, то откройте "index.html" в браузере (я использовал Internet Explorer). Надеюсь, это вам поможет..
Member 12464509
var num1, num2, num3
поля num1 = товар.item_qty;
пит2 = товар.product_price
num3 = num1 + num2;
{{item.item_qty}}
{{item.product_name}}
{{пункт.статус}}
{{item.product_price}}
{{item.item_qty + item.product_price}} </td
Remmove below code lines and I replaced num3 with expression {{item.item_qty + item.product_price}} :
var num1,num2,num3
num1 = item.item_qty;
num2 = item.product_price
num3 = num1 + num2;
I am not sure why are you using these.....