JSONオブジェクト配列「メモ」に含まれる3つのプロパティがあります。
$scope.notes = [
{
'type':'txt',
'name': 'JohnHenry',
'text':'Greeting',
}
];
私の入力フィールドは
`<input type="text" placeholder="Text here..." ng-model="note.input" ng-list="," ng-enter="addnote()">`
以下のテキストを入力テキストフィールドに入力します。
"txt-Glen-Negotiate Price, num-Phil-0939876, met-DrWalh-1505"
type プロパティはアイコンを表示するためのものです。以下のJSONのように取得したい
$scope.notes = [
{
'type':'txt',
'name': 'JohnHenry',
'text':'Greeting',
},{
'type':'txt',
'name': 'Glen',
'text':'negotiate price',
},{
'type':'num',
'name': 'Phil',
'text':'0939876',
},{
'type':'met',
'name': 'DrWalh',
'text':'1505',
}
];
入力 ng-list テキストを JSON オブジェクトに変換する方法。