我是其他网站开发人员在magento制作的项目。
我发现了这个ajax电话:
$j.ajax({
type: "POST",
url: "/ws/newsletter/register",
data: "email=" + d,
dataType: "json",
success: function (e) {
if (e.status != "1") {
showFormError(a, c, e.msg)
} else {
$j('#newsletter-validate-detail button[type="submit"].bot').after('<div class="newsletter-info">' + e.msg + "</div>");
$j("#" + c).val("");
$j("#advice-ajax-request-newsletter-validate-detail-input").remove()
}
$j('#newsletter-validate-detail button[type="submit"].bot').removeClass("btnLoading")
},
error: function (g, f, e) {
showFormError(a, c, unavailableMsg)
},
failure: function (e) {
showFormError(a, c, unavailableMsg)
}
})
这个位置在哪里? / WS /通讯/寄存器
没有WS文件夹。