Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 261583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:26:39+00:00 2026-05-11T22:26:39+00:00

If I do a post from jquery like so: $.post(Row/getRowNames, { currRow: MyRow, offset:

  • 0

If I do a post from jquery like so:

$.post("Row/getRowNames", { currRow: "MyRow", offset: 3 },
        function(rowNames) {
            /* How do I interpret the data to 
        },
"json");

How do I interpret the data rowNames that’s passed back from the method in the controller? I need to turn the json result into an array of strings some how…

Here’s the Controller method that gets the row names:

    [AcceptVerbs(HttpVerbs.Post)]
    public JsonResult getRowNames(string currRow, int offset)
    {
        return this.Json(_rowRepository.getRowNamesByOffset(currRow, offset));
    }

and getRowNamesByOffset(currRow, offset) returns an array of strings.

I’m really not sure how Json works, what is it doing to the array before it passes it back to the javascript? How is the javascript supposed to manipualte the Json in order to get the data it needs?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T22:26:39+00:00Added an answer on May 11, 2026 at 10:26 pm

    JavaScript Object Notation (JSON) is returned and passed to the callback:

    function(rowNames) {
        // rowNames is an Array of JavaScript JSON Objects representing a RowName.
        // 
        // Lets iterate over the rowNames.  Let's let the RowName object have 
        // a Title property which we'll alert.
        for (var i = 0; i < rowNames.length; i++) {
            alert(rowNames[i].Title);
        }
    }
    

    So basically the thing to note is that the parameter passed into the callback is a JSON object … in this case a serialized array of RowNames.

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using jQuery and JSON to pull data from a database. Each row
my post looks like this: $.post('/ajaxvalidate/1', {nid: nid}, function(data) { I get the Uncaught
I want to call function using post inside another jquery post like below, <script
With ASP.NET MVC3 I'm using Jquery/Ajax to post data from a form to a
After some stupid musings about Klingon languages, that came from this post I began
I am using jquery's $.post() function to add a list entry to the mysql
When I pass a value from Jquery (For Example test's name) in post method.When
I using jquery's $.post to pull information from a database dynamically. This works fine
Let's say I have an Ajax call from jQuery like this: $.ajax({ url: myUrl,
I am fetching 2 div's from a page using $.post jQuery AJAX request. Now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.