0

我有一个 MVC 3 应用程序。我想显示我刚刚创建的结果。

控制器和视图的一些代码。

  public ActionResult ViewGenerated(string Number, string ClientID)
    {
        // get a list of inmate id's and pins from batch number
        string url = HttpContext.Request.Url.ToString();
        int client;
        client = int.Parse(ClientID);
        int batch = int.Parse(Number);

        var list = (from a in aContext.aDetail
                    select a).ToList();
        // set this to the object collection
        ViewBag.x = list;
        return View();
    }

然后查看

@foreach (var r in ViewBag.x)
    { 
        <tr>
            <td>@r.ID</td>
            <td>@r.Name</td>
        </tr>

在我的 javascript 代码中,我调用 WCF 并返回数字,然后尝试将其传递给控制器​​?

function GenerateX() {
    // blah blah
    $.getJSON('/some service', function (response) {
    });
    // What I want is to get the number from the service then redirect the url to the view 
    $(this).dialog('close'); // Close it
}

我使用了一个 jquery 对话框来调用“GenerateX”。

我不知道该怎么做,我在这方面并不强。

非常感谢。

更新:

 $.getJSON('/Services/InService.svc/blah/GeneratePINs/').success(viewPins);
    // return "Number" here and want to pass it to controller.
    $(this).dialog('close'); // Close it
}

function viewPins(data) {
    var clientId = $("#clientIds").val();
    alert(clientId); // code not reach here
    window.open('/WebAdminOrion/blah/ViewGeneratedPINs?Number=' + data + '?&ClientID=' + clientId);
}
4

3 回答 3

0

我找到了答案。

window.open('/WebAdminOrion/blah/ViewGeneratedPINs?Number=' + data + '&ClientID=' + clientId);

有一个问号。删除它然后重新爱它。

于 2012-11-16T20:36:48.217 回答
0

看到这个:

HTML(用于 javascript 无障碍):

<!-- Constant or key in the "web.config" having the service route -->
<input type="hidden" id="service-url" value="@ConstUrlService" />
<input type="hidden" id="action-url" value="@Url.Action("action", "controller")" />

有关获取服务 URL 的最佳实现,请参阅对 WCF REST 服务的 jQuery AJAX 调用

JS(外部文件):

function GenerateX() {

    var dialog = this; 

    // blah blah
    $.getJSON($('#service-url').val(), function (response) {

       /*
       the call to "close" must be here, because the "ajax" is asynchronous 
       */

       /*
       This answer has to be the number, and could have a response status 
       for example Ok (true/false) 
       */

       if (response.Ok && response.Number != 0) {

            $(dialog).dialog('close'); // Close it
            window.location = $('#action-url').val() + '?Number=' + response.Number + '&ClientID=' + response.ClientID; 
       }
       else {

            alert('problem');
       }

    }).fail(function() {

       /* 
       for error
       */ 

       alert('call error');

    });
};
于 2012-11-16T15:41:54.677 回答
0

你可以使用window.location.href

前任。

window.location.href = '/controllername/actionname';

或者

window.location.href = '@Url.Action("actionname")';
于 2012-11-16T14:51:10.610 回答