问题标签 [ionic2-select]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 从两个数组中获取元素并在另一个数组中更新/替换它们
我需要从 arr1 中获取与 arr2 中的名称匹配的 ID,并将这些名称 ID 对替换/添加到 arr3 中。
arr1: {
[
id: [1234, 12345],
name: ‘one’,
},
{
id: [1270, 67812],
name: ‘two’,
},
{
id: [4970, 5170],
name: ’three’,
},
{
id: [02413, 02613],
name: ‘four’,
},
{
id: [8970],
name: ‘five’,
},
{
id: [7170, 6570, 6370],
name: ‘six’,
},
{
id: [8170, 22012, 4578, 33613],
name: ‘seven’,
},
{
id: [21812, 6170, 20412, 42812, 22012, 8170],
name: ‘eight’,
}]
arr2: [{
name: ‘one’,
}, {
name: ‘two’,
},]`
这将是需要被推入第三个数组的结果,用名称和 ID 替换名称元素。
arr3: [{
id: [1234, 12345],
name: ‘one’,
}, {
id: [1270, 67812],
name: ‘two’,
}
javascript - 离子 2 中下拉菜单的值没有改变
我想编辑填写的表格,但我没有从下拉元素中获得值
ts文件
ionic3 - Ionic 4 未在 HTML 中显示数据
我正在开发应用程序。代码在控制台中运行良好,没有任何错误,但 html 中没有信息。这是代码:home.page.html
主页.ts
离子信息:
离子(离子 CLI):4.10.0
系统:
NodeJS:v11.8.0 npm:6.5.0 操作系统:Windows 10