在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/HTML/ 小程序npm包json引用怎么破,默認不支持json依賴!

小程序npm包json引用怎么破,默認不支持json依賴!

圖片描述

VM16832:1 thirdScriptError 
 sdk uncaught third Error 
 module "npm/entities/maps/xml.json.js" is not defined 
 Error: module "npm/entities/maps/xml.json.js" is not defined
    at require (http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7213)
    at http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7068
    at http://127.0.0.1:33642/appservice/npm/entities/lib/encode.js:1:470
    at require (http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7354)
    at http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7068
    at http://127.0.0.1:33642/appservice/npm/entities/index.js:1:447
    at require (http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7354)
    at http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7068
    at http://127.0.0.1:33642/appservice/npm/basic-xml2json/lib/index.js:5:16
    at require (http://127.0.0.1:33642/appservice/__dev__/WAService.js:22:7354)
回答
編輯回答
編輯回答
司令

把你的.json 搞成 .js

{
 "a" : 1
}

改成:

module.exports = {
  a : 1
}
2018年6月30日 12:22