gpt4 book ai didi

javascript - 使用 Json 和 bootstrap 的 WCF

转载 作者:行者123 更新时间:2023-12-03 04:22:18 25 4
gpt4 key购买 nike

我有一个带有按钮的简单 Bootstrap 页面,单击该按钮时,模式将打开。

问题是模态内容或模态主体应该填充wcf数据,网页和wcf json数据都将托管在IIS中,有人可以帮助我如何实现这一点吗?

提前致谢enter image description here

最佳答案

您需要做的是在 jquery 中进行 ajax 调用,该调用将调用 WCF 方法。以下是调用该服务的方法。

var Type;
var Url;
var Data;
var ContentType;
var DataType;
var ProcessData;
function WCFJSON() {
var userid = "1";
Type = "POST";
Url = "Service.svc/GetUser";
Data = '{"Id": "' + userid + '"}';
ContentType = "application/json; charset=utf-8";
DataType = "json"; varProcessData = true;
CallService();
}
// Function to call WCF Service
function CallService() {
$.ajax({
type: Type, //GET or POST or PUT or DELETE verb
url: Url, // Location of the service
data: Data, //Data sent to server
contentType: ContentType, // content type sent to server
dataType: DataType, //Expected data format from server
processdata: ProcessData, //True or False
success: function(msg) {//On Successfull service call
ServiceSucceeded(msg);
},
error: ServiceFailed// When Service call fails
});
}
function ServiceSucceeded(result) {
if (DataType == "json") {
$("#ModalBody").html(result)
}

关于javascript - 使用 Json 和 bootstrap 的 WCF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43890325/

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