var url=Forguncy.ForguncyData.ForguncyRoot+'customapi/wechat/sendtemplatemessage';
var data =
{
"openid": Forguncy.Page.getCell("openid").getValue(),
"first": Forguncy.Page.getCell("first").getValue(),
"keyword1": Forguncy.Page.getCell("keyword1").getValue(),
"keyword2": Forguncy.Page.getCell("keyword2").getValue(),
"keyword3": Forguncy.Page.getCell("keyword3").getValue(),
"keyword4": Forguncy.Page.getCell("keyword4").getValue(),
"remark": Forguncy.Page.getCell("remark").getValue(),
"url": Forguncy.Page.getCell("url").getValue()
}
$.post(url, data, function (result) {console.log(result)}); |