Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. {status: true, templates: Array(2)}
  2. status: true
  3. templates: Array(2)
  4. 0:
  5. created_at: "2019-06-17 22:29:44"
  6. css: "somecss"
  7. html: "somehtml"
  8. id: 1
  9. page_name: "page-1"
  10. template_name: "template-1"
  11. updated_at: "2019-06-17 22:29:44"
  12. __proto__: Object
  13. 1:
  14. created_at: "2019-06-18 01:30:49"
  15. css: "somecss"
  16. html: "somehtml"
  17. id: 3
  18. page_name: "page-1"
  19. template_name: "template-2"
  20. updated_at: "2019-06-18 01:30:49"
  21. __proto__: Object
  22. length: 2
  23. __proto__: Array(0)
  24. __proto__: Object
  25.  
  26. success: function(data) {
  27. if(data.status == true) {
  28. $.each(data.templates, function(i, template) {
  29. $('#template-select').html('<option value="' + template.template_name + '">' + template.template_name + '</option>');
  30. });
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement