简体   繁体   English

vb.net返回具有多种类型的json对象?

[英]vb.net return json object with multiple types?

I need to return some data from a web service that looks something like this: 我需要从Web服务返回一些看起来像这样的数据:

data.page = 1
data.count = 12883
data.rows(0).id = 1
data.rows(0).name = "bob"
data.rows(1).id = 2
data.rows(1).name = "steve"
data.rows(2).id = 3
data.rows(2).name = "fred"

I have no idea how to do this. 我不知道该怎么做。 I've returend simple types and simple arrays, but never an object like this. 我放弃了简单的类型和简单的数组,但是从来没有像这样的对象。

The data source is a sql Database. 数据源是一个sql数据库。 The target is a javascript/ajax function. 目标是javascript / ajax函数。 I'm currently successfully returning the rows themselves as a dataset and it works, but I need to add the count and a couple other "parent level" variables. 目前,我已经成功地将行本身作为数据集返回了并且可以正常工作,但是我需要添加计数和其他两个“父级”变量。

For the sake of full disclosure, here is the code that is working: 为了完全公开,下面是起作用的代码:

<WebMethod()> _
Public Function rptPendingServerRequests() As DataSet
    Dim connetionString As String
    Dim connection As SqlConnection
    Dim command As SqlCommand
    Dim adapter As New SqlDataAdapter
    Dim ds As New DataSet
    Dim sql As String

    connetionString = "..."
    sql = "SELECT usm_request.request_id, usm_request.status, usm_request.req_by_user_id " +
        "FROM usm_request " +
        "WHERE usm_request.request_id in " +
        "(SELECT distinct(usm_request.request_id) from usm_request, usm_subscription_detail WHERE usm_request.request_id = usm_subscription_detail.request_id " +
        "AND usm_subscription_detail.offering_id = 10307) ORDER BY usm_request.request_id DESC"
    connection = New SqlConnection(connetionString)

    Try
        connection.Open()
        command = New SqlCommand(sql, connection)
        adapter.SelectCommand = command
        adapter.Fill(ds)
        adapter.Dispose()
        command.Dispose()
        connection.Close()

        Return ds

    Catch ex As Exception
    End Try
End Function

And I'm trying to consume it with FlexiGrid. 我正在尝试通过FlexiGrid使用它。 I've been working at it for a few hours with no luck. 我已经工作了几个小时,没有运气。 I basically need to convert the PHP at the following site to .net 我基本上需要将以下站点的PHP转换为.net

http://code.google.com/p/flexigrid/wiki/TutorialPropertiesAndDocumentation http://code.google.com/p/flexigrid/wiki/TutorialPropertiesAndDocumentation

I think that you would be much better off just creating a couple of classes and moving the data from the database into these classes. 我认为,仅创建几个类并将数据从数据库移入这些类会更好。 For example: 例如:

Public Class MyDataClass
    Public Property Page As Integer

    Public ReadOnly Property Count As Integer
        Get
            If Me.Rows IsNot Nothing Then
                Return Me.Rows.Count
            Else
                Return 0
            End If
        End Get
    End Property

    Public Property Rows As List(Of MyDataRow)

    ' Parameterless constructor to support serialization.
    Public Sub New()
        Me.Rows = New List(Of MyDataRow)
    End Sub
    Public Sub New(wPage As Integer, ds As DataSet)
        Me.New()

        Me.Page = wPage

        For Each oRow As DataRow In ds.Tables(0).Rows
            Dim oMyRow As New MyDataRow

            oMyRow.Id = oRow("id")
            oMyRow.Name = oRow("Name")

            Me.Rows.Add(oMyRow)
        Next
    End Sub
End Class

Public Class MyDataRow
    Public Property Id As Integer
    Public Property Name As String

    ' Parameterless constructor to support serialization
    Public Sub New()

    End Sub
End Class

Then change the return type of the method to MyDataClass and change the return to: 然后将方法的返回类型更改为MyDataClass并将返回值更改为:

        Return New MyDataClass(1, ds)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM