您如何在 Ruby 中执行以下 JavaScript 请求?
url = 'http://www.example.com/';
data 'name=aren&age=22';
$.ajax({
type: "POST",
url: url,
data: data,
dataType: "json",
error: function() {
console.log('error');
},
success: function(data) {
console.log('success');
}
});