我得到了數組的屬性,我想在網格中顯示它們。 怎麼辦?可能嗎? 這是我的代碼: function StartBuild(ProfileProperties) {
var details = [];
for (i = 0; i < ProfileProperties.length; i++) {
details[i]=[{ name: ProfilePropert
我在我的ASP.NET核心控制器下面的方法 public async Task<JsonResult> MyJsonResultMethod(int page,int take, int skip, IEnumerable<Sort> sort){
...
public class Sort
{
public string field { get; set; }
pu