私はphonegapとangularjsを使用しています。私の問題は、オブジェクト関数の関数を呼び出すことです。私は自分のコードを示します。私はこの問題を解決する方法を理解していません。私はhelloworldをオブジェクト関数の関数として呼びたいと思っています。angularjsが自分の機能で動作していません
<div class="newsFeeds-box" ng-app="pkdNewsFeeds" ng-controller="pkNewsFeedsController">
<article class="container-news-box" ng-repeat="x in newsFeeds">
<p class="newsFeeds-title ">{{ x.id }}</p>
</article>
</div>
<script>
// this function is getting data array
storage.getNewsFeeds(storage.db,function(resultSet) {
helloworld.call(this,resultSet); // this function is not working. I will passing my resultSet with this function
},3);
function helloworld(resultSet) {
//this is dummy data
var newsFeedsData = [{id:"rdsf111111",longDesp:"djfsdf dsfsdf sdfsf"},{id:"rdsf22222",longDesp:"djfsdfasdasdasdasd dsfdsf vsdvsd"}];
var pkdNewsFeedsrun = angular.module(' pkdNewsFeeds ', []);
pkdNewsFeedsrun.controller('pkNewsFeedsController', function($scope) {
$scope.newsFeeds = newsFeedsData;
});
}
<script>
何が問題なのですか? – ste2425
helloworld関数from storage.getNewsFeeds – helloworld