jQuery JSONP 호출 보내기
<table id="resultTable">
<tr class="tableHead">
<th> </th>
<th> </th>
<th> </th>
<th> IP</th>
<th> </th>
<th> </th>
<th>basIP</th>
<th>bas </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</table>
JavaScript:
$('#queryButton').click(function () {
log("Query Start");
var typeStr = $('#type').val();
var usernameStr = $('#username').val();
var start = $('#startTime').val();
var end = $('#endTime').val();
var orderStr = $('#order').val();
var isFuzzy = false;
log("Check fuzzy");
if (usernameStr.match(/^1[3|4|5|7|8][0-9]\d{4,8}$/)) {
log("Match Cellphone regex");
isFuzzy = false;
} else {
log("Not Match Cellphone regex");
isFuzzy = true;
}
log("Got type:" + typeStr + " username:" + usernameStr + " start:" + start + " end:" + end + " order:" + orderStr + " fuzzy:" + isFuzzy);
var URL = "http://localhost:8080/troubleshooting/service/troubleInfo";
$.ajax({type: "get",
url: URL,
data: {type: typeStr, username: usernameStr, startTime: start, endTime: end, order: orderStr, fuzzy: isFuzzy},
dataType: "jsonp",
jsonpCallback: "troubleInfoCallback",
success: function (json) {
log("Query success");
$("tr").remove(".queryResult");
$.each(json, function (index, item) {
$("#resultTable").append("<tr class='queryResult'>" +
"<td>" + index + "</td>" +
"<td>" + item.infoType + "</td>" +
"<td>" + item.username + "</td>" +
"<td>" + item.userIP + "</td>" +
"<td>" + item.belongsTo + "</td>" +
"<td>" + item.accessFrom + "</td>" +
"<td>" + item.basIP + "</td>" +
"<td>" + item.basID + "</td>" +
"<td>" + item.entryPoint + "</td>" +
"<td>" + item.detail + "</td>" +
"<td>" + item.requestdate + "</td></tr>");
});
}
});
});
서비스 포트:
@RequestMapping(value = "/troubleInfo", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE + ";charset=UTF-8")
@ResponseBody
public String getTroubleInfo(@RequestParam(value = "callback", required = true) String callback,
@RequestParam(value = "type", required = true) String msgType,
@RequestParam(value = "username", required = false) String username,
@RequestParam(value = "fuzzy", required = false) boolean fuzzy,
@RequestParam(value = "startTime", required = false) String startTime,
@RequestParam(value = "endTime", required = false) String endTime,
@RequestParam(value = "order", required = false) String order) {
DateTimeFormatter defaultDateFormatter = DateTimeFormat.forPattern(dateFormatterPattern);
DateTime start, end;
if (startTime != null && endTime != null && !startTime.isEmpty() && !endTime.isEmpty()) {
start = defaultDateFormatter.parseDateTime(startTime);
end = defaultDateFormatter.parseDateTime(endTime);
} else {
end = DateTime.now();
start = end.minusDays(7).withTime(0, 0, 0, 0);
}
List<TroubleInfo> result = service.getInfo(msgType, username, fuzzy, start.toDate(), end.toDate(), order);
GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.setLongSerializationPolicy(LongSerializationPolicy.STRING);
gsonBuilder.setDateFormat(dateFormatterPattern);
Gson gson = gsonBuilder.create();
return callback + "(" + gson.toJson(result) + ")";
}
설명: 서버 수신 매개 변수 콜백은 jsonpCallback: "troubleInfoCallback"입니다.
최종적으로 서비스 측에서 되돌아오는 것은 trouble Info Callback(JSONstr)이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[*기타*] 앱에서 외부 데이터 검색(JSONP편)앱에서 외부 서버의 데이터를 취하고 싶은 경우의 JSONP편. 일반적으로 다른 도메인에 대해 Ajax 통신을 시도하면 화가납니다. 이것을 크로스 도메인 제약이라고 한다. 그래도 외부 서버의 데이터를 가져오는 것이 필...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.