簡體   English   中英

將javascript數組值分配給angularjs變量

[英]assign javascript array value to angularjs variable

obj = ['sha','abc','xyz] //javascript array

function myclrt($scope) //this angular js function
{
    $Scope.one = obj[0]; // obj[0] is not being assinged to scope.one
}

這是行不通的。

嘗試這個:-

obj = ['sha','abc','xyz] //javascript array
function myclrt($scope) //this angular js function
{
   $scope.one = obj[0]; // Typo $Scope -> $scope
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM