0

This is my controller action...

    // GET: ex: /Question/Details/5?project=1
    public ActionResult Details(int? project, int? questionId)
    {
      ...
    }

This is my Knockout VM:

    // Get some other info about question
    $(document).ready(function () {
            getSomeOtherInfo(<need to pass question id here>, <need to pass project id here>);
    });

Any help will be greatly appreciated.

4

1 に答える 1

0

詳細に厳密に型指定された ViewModel を使用している場合は、ビュー モデルに 2 つのプロパティを追加してから、ビューで JavaScript に値を提供できます。

$(document).ready(function () {
    getSomeOtherInfo(@(Model.project), @(Model.questionId));
});

厳密に型指定された ViewModel を使用していない場合は、ViewBag を使用できます

于 2013-02-07T20:05:40.553 に答える