向Ionic Project

时间:2015-08-29 05:11:45

标签: javascript angularjs ionic-framework

我对角度和离子都很新,因为这是我的第一个小项目。

我在创建从不同来源获取json的路由时遇到问题。

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

    myApp.config(function($stateProvider, $urlRouterProvider) {
        //$urlRouterProvider.otherwise('/')

        $stateProvider.state('app.event.detail', {
            url: '/:event',
            templateUrl: 'event.html',
            controller: 'EventCtrl'
        })

    })

    myApp.controller('EventCtrl', function($scope) {
        $scope.todos = [
            {title: "Take out the trash", done: true},
            {title: "Do laundry", done: false},
            {title: "Start cooking dinner", done: false}
        ]
    })

    myApp.controller('MainCtrl', function($http) {
        var main = this;
        //debugger
        $http.get('http://call.amir-meshkin.com/call-for-entries/').success(function(data){
            //debugger
            main.items = data;
            console.dir(data);
        })


    });

http://plnkr.co/edit/UYgOwC1nqUrpG45wR4q4

0 个答案:

没有答案