car/frontend/x-pages/jsonp.js

13 lines
202 B
JavaScript
Raw Normal View History

2023-05-31 21:43:20 +08:00
(function() {
const response = {
data: {
type: "page",
title: "标题",
body: "this result is from jsonp"
},
status: 0
}
window.jsonpCallback && window.jsonpCallback(response);
})();