setting.async.otherParam.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Array(String) / JSON</span><span class="path">setting.async.</span>otherParam</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.core</span> js ]</span></h3>
  5. <div class="desc">
  6. <p></p>
  7. <div class="longdesc">
  8. <p>The query parameters of the Ajax request. (key - value) It is valid when <span class="highlight_red">[setting.async.enable = true]</span></p>
  9. <p>Default: [ ]</p>
  10. </div>
  11. </div>
  12. <h3>Array(String) Format</h3>
  13. <div class="desc">
  14. <p>Can be an empty array. e.g. [ ]. The array should contain key value pairs, e.g. [key, value]. (Either or [key] or [key, value, key] is wrong!!)</p>
  15. </div>
  16. <h3>JSON Format</h3>
  17. <div class="desc">
  18. <p>Use JSON hash data to set the key-value pairs. e.g. { key1:value1, key2:value2 }</p>
  19. </div>
  20. <h3>Examples of setting</h3>
  21. <h4>1. Using Array(String) Format</h4>
  22. <pre xmlns=""><code>var setting = {
  23. async: {
  24. enable: true,
  25. url: "http://host/getNode.php",
  26. <span style="color:red">otherParam: ["id", "1", "name", "test"]</span>
  27. }
  28. };
  29. when zTree sends the ajax request, the query string will be like this: id=1&name=test</code></pre>
  30. <h4>2. Using JSON data Format</h4>
  31. <pre xmlns=""><code>var setting = {
  32. async: {
  33. enable: true,
  34. url: "http://host/getNode.php",
  35. <span style="color:red">otherParam: { "id":"1", "name":"test"}</span>
  36. }
  37. };
  38. when zTree sends the ajax request, the query string will be like this: id=1&name=test</code></pre>
  39. </div>
  40. </div>