如何将词组字符串更改为angularjs中的单词字符串数组

时间:2016-12-02 20:13:04

标签: javascript angularjs

我想将一个短语字符串更改为angularjs中的单词字符串数组。例如,我想将$scope.phrase='come back home'转换为$scope.words=['come','back','home']

你能帮忙吗

2 个答案:

答案 0 :(得分:1)

您需要使用split方法。

Split方法将String对象拆分为字符串数组。

$scope.words=$scope.phrase.split(' ');

这是一个有效的solution

答案 1 :(得分:1)

使用split字符串方法:

$scope.words = $scope.phrase.split(' '); // Using space as param