gpt4 book ai didi

javascript - 将 JSON 绑定(bind)到 Angularjs 输入

转载 作者:行者123 更新时间:2023-11-28 01:30:20 25 4
gpt4 key购买 nike

我得到了一些像这样的 JSON:

[{
"Id": 0,
"Text": "Item 1",
"Selected": 1
}, {
"Id": 1,
"Text": "Item 2",
"Selected": 1
}]

像这样的输入:

<input type="text"
value="{{question.postObjs}}"

我想要的是唯一的属性“Text”作为输入中的列表。

Item 1, Item 2, ...

这可能吗?我尝试了一段时间,没有任何效果:-(

最佳答案

在你的 Controller 中:

scope.text = '';    
for (var value in scope.question.postObjs){
scope.text = scope.text + value.Text;
}

在您的输入中:

<input type="text" value="{{text}}" />

<input type="text" ng-model="text" />

关于javascript - 将 JSON 绑定(bind)到 Angularjs 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22199682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com