2

特定のモデルの rails_admin 新規・編集ページにカスタムボタンを追加したいです。

このボタンは、get リクエストのコンテンツをカスタム URL に解析する必要があります。

次のようなJQueryアプローチを使用して見つけた現在の問題:

$('#your_button_id').click(function () {
  $.get('your_url', function(data) {
    //$('.result').html(data); - sample
    //Do whatever you want
    alert('Load was performed.');
  });
});

flashvars 属性をロードしないということです。

flashvars が含まれているコンテンツ全体を取得する他の方法があるかどうか疑問に思っていました。

4

1 に答える 1

0

URL だけを取得したいのか、get リクエストへの応答を取得したいのかわかりません。

URL が必要な場合:

$('#your_button_id').click(function () {
  var sPageURL = window.location.search.substring(1);
  //manipulate the url in sPageURL
});

URLのコンテンツが必要な場合:

$('#your_button_id').click(function () {
  $.get('your_url', function(data) {
    //$('.result').html(data); - sample
    //Do whatever you want
    alert('Load was performed.');
  });
});

参考文献:

于 2012-10-30T15:48:59.107 に答える