我安装了Cython 0.20,并且可以从python解释器执行'来自Cython.Distutils import build_ext',所以我不明白 以下错误,当我尝试使用buildozer构建apk时。我在buildozer.spec中的log_level已经设置为2。它似乎是试图将jnius安装到virtualenv中(除非我弄错了)..我认为这是正常的,因为我没有自己设置。有什么建议?我用谷歌搜索无济于事。我的操作系统是Ubuntu 15.04。
以下是命令输出的尾端:
ng-repeat
...
<html ng-app="app">
<body ng-controller="main">
<div ng-repeat="d in data" ng-init="edited_odd_times=false" ng-click="editdata()">
<span>{{d}}: {{edited_odd_times}}</span>
</div>
</body>
<script>
var app = angular.module("app", []);
app.controller("main", function($scope){
$scope.data = [1, 2, 3, 4];
$scope.data2 = [{d:1}, {d:2}, {d:3}, {d:4}];
$scope.editdata = function(){
// Here is my confuse, how can I access the d and edited_odd_times inside ng-repeat without putting them as paramters
}
});
</script>
</html>