gpt4 book ai didi

requirejs - 路径配置文件中的文本文件

转载 作者:行者123 更新时间:2023-12-04 17:11:57 27 4
gpt4 key购买 nike

我正在使用 text RequireJS 的插件。是否可以在路径配置文件中引用文本文件?我试过了

require.config({
paths: {
'myTemplate': 'text!templates/myTemplate.html'
}
});

但这没有用。

最佳答案

它不起作用的原因是因为 RequireJS 插件被设计为用作 require 命令的一部分,而不是在配置中。

尝试:

require.config({
paths: {
'myTemplate': 'templates/myTemplate.html'
}
});

在你的模块中:
define(
['text!myTemplate'],

function () {}
)

关于requirejs - 路径配置文件中的文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8780775/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com