我有个狂欢。在加载页面时,jstree可以从服务器填充,因为它会对服务器进行新的调用,但在此之后,每当我刷新页面时,它总是从缓存中获取数据,而不是调用服务器,从而总是使用旧的数据填充。我使用的是jstree 3.0.2版本。下面是在页面加载时生成jstree的代码。
$('#tree').jstree({
'core': {
data:{
'url':'getjstree' // this is the url which will get the json data from the server
}
}});
我们如何解决
我使用的是NextJS 12.0.3版本,带有动画的框架运动。把框架动作库的功能放在一边,当我标记组件中的任何html元素时,我得到一个错误
error - SyntaxError: The requested module 'react' is expected to be of type CommonJS, which does not support named exports. CommonJS modules can be imported by importing the default export.
For example:
import pkg from
我目前正在使用js函数提交数据,而无需刷新页面或单击按钮。输入字段在tab #2中,一旦用户停止键入,它就会执行js。问题是js正在刷新页面,因此我又回到了tab#1,如何防止页面刷新呢?我想我已经在JS函数中包含了必要的代码来停止这种情况。
<script>
$(document).ready(function() {
var timer;
$('#video-input1').on('keyup', function() {
var value = this.value;