列表对象获得比Blazor WASM中的原始数据集更多的项目返回
我有一个带有一个列表对象的父组件文件。
<h3>Create Movie</h3>
<MovieForm Movie="Movie" NotSelectedGenres="NotSelectedGenres" OnValidSubmit="SaveMovie"/>
@code {
private Movie Movie = new Movie() ;
private List<Genre> NotSelectedGenres = new List<Genre>()
{
new Genre()
{
Id = 1, Name = "Action"
},
new Genre()
{
Id = 2, Name = "Comedy"
},
new Genre()
{
Id = 3, Name = "Drama"
}
} ;
private void SaveMovie()
{
Console.WriteLine("this works") ;
}
}
然后,我将名为“ Movieform”的子部分插入其中。
然后在调试模式下,当我检查“ notSelectedGenres”的长度时,它说总计4。(在子组件中)
[Parameter]
public List<Genre> SelectedGenres { get ; set ; } = new List<Genre>() ;
它具有比原始数据集的价值更重要的。
NotSelectedGenres
_items BlazorMoves.Shared.Entities.Genre[](4)
0 BlazorMoves.Shared.Entities.Genre
1 BlazorMoves.Shared.Entities.Genre
2 BlazorMoves.Shared.Entities.Genre
3 null
length 4
这是对的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦将第一个项目添加到.net中的
list
,它就会内部分配大小4的数组。分配的尺寸会根据需要自动增加。Count
属性应返回列表中的正确数量项目,而apcation
返回当前分配的内部大小。As soon as you add the first item to a
List
in .NET, it internally allocates an array of size 4. The allocated size increases automatically as required.the
Count
property should return the correct number of items in the list, whileCapacity
returns the current internal size allocated.List<> docs