0
我想知道如何從JavaScript文件中提取JSON數據。 javascript旨在用作配置文件幷包含一個帶有JSON數據的變量。這與Magento 2中使用的require-config.js文件類似,僅供參考。它看起來是這樣的:如何解析包含存儲在變量中的json數據的JavaScript文件?
var config = {
fieldsets : [
{
title : 'Quote Essentials',
description : 'Some',
fields : [
{
label : 'What type of project is this for?',
required : true,
class : '',
type : 'input',
inputType : 'text',
hint : 'For example: company uniforms, clothing line, school events, etc.',
id : ''
},
{
label : 'How many total items do you need?',
required : true,
class : '',
type : 'input',
inputType : 'text',
hint : 'Please note: the minimum order size is 24 pieces.',
id : ''
},
...
這不是JSON。 – Xufox
我知道,它是一個包含json數據的變量的JavaScript文件。 –
你需要從哪裏提取?在瀏覽器中?在服務器上? – Dmitry