gpt4 book ai didi

jquery - 将 jsTree 与 MVC .net 结合使用

转载 作者:行者123 更新时间:2023-12-01 00:32:21 26 4
gpt4 key购买 nike

我有一个 MVC 项目,我尝试调用 Controller 对象中的方法,但该方法没有被调用,这是代码。

.NET

Namespace WindowTreeView
Public Class DefaultController
Inherits System.Web.Mvc.Controller

'
' GET: /Default

Function Index() As ActionResult
Return View()
End Function


Function GetTreeNodes() As JsonResult



End Function


End Class
End Namespace

JQUERY

$(document).ready(function () {

$("#divJsTreeDemo").tree({
data: {
method: "POST",
dataType: "json",
url: "Default/GetTreeNodes",
async: true,
contentType: "application/json; charset=utf-8",
data : "{}"
}
});
});

最佳答案

既然您正在请求数据,请尝试 GET 请求 - 而不是 post!

method: "POST"

然后您可以返回 JSON 结果并在 js 中解析。

关于jquery - 将 jsTree 与 MVC .net 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10782029/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com