简体   繁体   English

通过AJAX从JSON设置值

[英]Set Value from JSON via AJAX

I'm using Github Gists for a web playground I'm making as a side project. 我正在将Github Gists用于我作为副项目制作的网络游乐场。 I load two json files into the editor. 我将两个json文件加载到编辑器中。 1 handles all the libraries (jquery, bootstrap, etc:) and another for the users settings (fontsize, version, etc:) 1处理所有库(jquery,bootstrap等:),另一个处理用户设置(fontsize,version等:)

So anyway I have this JSON named settings 所以无论如何我都有这个JSON命名设置

var settings   = gistdata.data.files["settings.json"].content
var jsonSets = JSON.parse(settings)

I parse and attempted to grab an object from the JSON and set it as a value of a input textbox. 我解析并尝试从JSON获取对象,并将其设置为输入文本框的值。

Now console.log(jsonSets.siteTitle) works perfectly fine 现在console.log(jsonSets.siteTitle)可以正常工作

but when I try to change the input dynamically... 但是当我尝试动态更改输入时...

$("[data-action=sitetitle]").val(jsonSets.siteTitle).trigger("change")

The problem is it's not actually applying the value! 问题在于它实际上并没有应用价值!

The only way I've been able to successfully apply the value is... 我能够成功应用该值的唯一方法是...

setTimeout(function() {
  $("[data-action=sitetitle]").val(jsonSets.siteTitle).trigger("change")
}, 5000)

Which is ridiculously slow. 这简直太慢了。

Does anyone know why it's not applying the value? 有谁知道为什么它没有应用价值?
in addition. 此外。
How can I solve this problem? 我怎么解决这个问题?

var hash = window.location.hash.substring(1)
if (window.location.hash) {
  function loadgist(gistid) {
    $.ajax({
      url: "https://api.github.com/gists/" + gistid,
      type: "GET",
      dataType: "jsonp"
    }).success(function(gistdata) {
      var libraries  = gistdata.data.files["libraries.json"].content
      var settings   = gistdata.data.files["settings.json"].content

      var jsonLibs = JSON.parse(libraries)
      var jsonSets = JSON.parse(settings)

      // Return libraries from json
      $.each(jsonLibs, function(name, value) {
        $(".ldd-submenu #" + name).prop("checked", value)
      })

      // Return font settings from json
      var siteTitle      = jsonSets.siteTitle
      var WeaveVersion   = jsonSets.version
      var editorFontSize = jsonSets.editorFontSize
      var WeaveDesc      = jsonSets.description
      var WeaveAuthor    = jsonSets.author

      $("[data-action=sitetitle]").val(siteTitle).trigger("change")
      $("[data-value=version]").val(WeaveVersion).trigger("change")
      $("[data-editor=fontSize]").val(editorFontSize).trigger("change")
      $("[data-action=sitedesc]").val(WeaveDesc).trigger("change")
      $("[data-action=siteauthor]").val(WeaveAuthor).trigger("change")
    }).error(function(e) {
      // ajax error
      console.warn("Error: Could not load weave!", e)
    })
  }

  loadgist(hash)
} else {
  // No hash found
}

My problem was actually related to localStorage. 我的问题实际上与localStorage有关。
I cleared it localStorage.clear(); 我清除了它localStorage.clear(); ran the ajax function after and it solved the problem. 之后运行ajax函数,它解决了问题。

var hash = window.location.hash.substring(1)
if (window.location.hash) {
  localStorage.clear()
  function loadgist(gistid) {
    $.ajax({
      url: "https://api.github.com/gists/" + gistid,
      type: "GET",
      dataType: "jsonp",
      jsonp: "callback"
    }).success(function(gistdata) {
      var htmlVal    = gistdata.data.files["index.html"].content
      var cssVal     = gistdata.data.files["index.css"].content
      var jsVal      = gistdata.data.files["index.js"].content
      var mdVal      = gistdata.data.files["README.md"].content
      var settings   = gistdata.data.files["settings.json"].content
      var libraries  = gistdata.data.files["libraries.json"].content
      var jsonSets   = JSON.parse(settings)
      var jsonLibs   = JSON.parse(libraries)

      // Return font settings from json
      var siteTitle      = jsonSets.siteTitle
      var WeaveVersion   = jsonSets.version
      var editorFontSize = jsonSets.editorFontSize
      var WeaveDesc      = jsonSets.description
      var WeaveAuthor    = jsonSets.author

      $("[data-action=sitetitle]").val(siteTitle)
      $("[data-value=version]").val(WeaveVersion)
      $("[data-editor=fontSize]").val(editorFontSize)
      $("[data-action=sitedesc]").val(WeaveDesc)
      $("[data-action=siteauthor]").val(WeaveAuthor)
      storeValues()

      // Return settings from the json
      $(".metaboxes input.heading").trigger("keyup")

      // Return libraries from json
      $.each(jsonLibs, function(name, value) {
        $(".ldd-submenu #" + name).prop("checked", value).trigger("keyup")
      })

      // Set checked libraries into preview
      $("#jquery").trigger("keyup")

      // Return the editor's values
      mdEditor.setValue(mdVal)
      htmlEditor.setValue(htmlVal)
      cssEditor.setValue(cssVal)
      jsEditor.setValue(jsVal)

    }).error(function(e) {
      // ajax error
      console.warn("Error: Could not load weave!", e)
    })
  }

  loadgist(hash)
} else {
  // No hash found
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM