是否可以使用带有gulp的UglifyJS2有效地忽略某些字符串,例如:
val dataset = spark
.sparkContext
.wholeTextFiles(inputPath)
.withColumn("temp", parseDocValue(Array(".biz-page-title", ".biz-website a"))('filecontent))
.withColumn("biz_name", col("temp")(0))
.withColumn("biz_website", col("temp")(1))
.drop("temp")
def parseDocValue(cssSelectorQueries: Array[String]) =
udf((html: String) => {
val j = Jsoup.parse(html)
cssSelectorQueries.map(query => j.select(query).text())})
基本上,我们在Shopify电子商务平台上使用js中的液体。但是我们需要液体保持准确的状态,以便Shopify可以处理液体。
非常感谢您提供的任何帮助!