2017-10-09 15 views
0

このデータは、LaravelまたはPHPコールによってサーバから呼び出されるいくつかのデータをsimplecontrollerに送信します。このng.user.nameディレクティブのように簡単に渡したいと思います。AngularJS Laravel PHPコールを使用してビューからコントローラへデータを渡す

<div ng-controller="simplecontroller" id="simplecontroller"> 
<a href="#" "ng-name={{$company->name}}" "ng-id={{$company->id}}">{{$company->name}}</a> 

私のコントローラは、名前とID

app.controller('simplecontroller', function($scope) { 
    $scope.user = { 
    name = ng-name // or I could call {{$company->name}} here? 
    id = ng-id 
    }; 

この機能を実現するために、任意の方法を使用しますか?申し訳ありませんが、私はAngular JSのSUPER NEWです。私に正しい方向を指摘してください。

答えて

0

あなたのコードには多大な混乱があります。あなたはこれが役立つかもしれない

<div ng-controller="simplecontroller" id="simplecontroller"> 
<a href="#">{{company.name}}</a> 
</div> 
app.controller('simplecontroller', function($scope) { 
    $scope.company = { 
    "name":"Comapny Name", "id":"1" 
    }; 
}); 

... angularjsより良いを学ぶ必要がある - https://www.tutorialspoint.com/angularjs/index.htm

+0

私はlaravelに精通していないですし、一緒にangularjs、しかし、あなたが言及したように、あなたが好きそれを試すことができます - 「名前」 :$ company-> name、 "id":$ company-> id ... –

関連する問題