Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Double value appear in textarea when using render function to create in .vue file. #7480

Open
Fuji-sunny opened this issue Jan 19, 2018 · 6 comments

Comments

@Fuji-sunny
Copy link

Version

2.5.13

Reproduction link

https://jsfiddle.net/SunnyLyu/ntoboxev/

Steps to reproduce

  1. sorry for things that it could not use .vue file definition in jsfiddle, please follow the steps below.

  2. to create a textarea component like this:

    export default {
    props: {
    value: {
    type: String
    }
    },
    render: function(h) {
    var _this = this;
    return h('textarea', {
    'on': {
    'input': function(e){
    _this.$emit('update:value', e.target.value);
    }
    }
    })
    }
    };

  3. import into a .vue file and use as a Vue component:

  1. run all these codes

What is expected?

Type '1' in textarea once, a character '1' would appear in the textarea, in IE11.

What is actually happening?

Type '1' in textarea once, 2 characters '11' would appear in the textarea at the same time, in IE11.


  1. Just use the component definition in HTML, everything goes well in both IE and Chrome (like the example running in jsfiddle).

  2. Once when using the definition in .vue file, after compiled would get wrong in IE11, but still ok in Safari and Chrome.

@posva posva closed this as completed Jan 19, 2018
@posva posva reopened this Jan 19, 2018
@Fuji-sunny
Copy link
Author

Is there any progress ?

@jkzing
Copy link
Member

jkzing commented Jan 24, 2018

Hi @Fuji-sunny, I am not able to reproduce your issue under IE 11 with following code:

<script>
export default {
  props: {
    value: {
      type: String
    }
  },
  render(h) {
    return h('textarea', {
      on: {
        input: e => {
          this.$emit('update:value', e.target.value)
        }
      }
    })
  }
}
</script>

<style>

</style>

repro


If you are still facing this issue, I suggest you open a github repro, and upload your problematic code, and give the repo address back to us.

@Fuji-sunny
Copy link
Author

Fuji-sunny commented Jan 26, 2018

@jkzing
I am still facing this problem so I push the reproduction code in here:
https://github.com/Fuji-sunny/vuerepo

My ie version is 11.0.9600.18738, hope the reproduction would help.

@jkzing
Copy link
Member

jkzing commented Feb 2, 2018

@Fuji-sunny just did some investigation on it and found you can get it work simply replace [this.value] with this.value

render(h) {
  return h('textarea', {
    on: {
      input: e => {
        this.$emit("update:value", e.target.value);
      }
    },
  }, this.value);
}

It's vue's patch mechanism which caused that, but the root cause is a different behavior in Chrome and IE11, see this fiddle: https://jsfiddle.net/9fshvom1/2/. I'm not sure if we need to do improvement on it or it's just a wontfix...😂

@Fuji-sunny
Copy link
Author

@jkzing
Much thanks for your investigation !

In this scenario, I would like to use your solution.
Hope that this would not happen in other situation.

@Fuji-sunny Fuji-sunny reopened this Apr 9, 2018
@Fuji-sunny
Copy link
Author

Fuji-sunny commented Apr 9, 2018

@jkzing
Unfortunately here comes another problem.

Your solution works when adding text in the textarea, but when press backspace to omit text till no text in textarea, IE11 throws an error says something like "arguments invalid".

I've gone through into vue's code, when pass [this.value] to createElement, it won't cause this error. When pass this.value to createElement, it would go into setTextContent method. and node.wholeText is about this error.

Any other solutions or suggestions ?

ps. The same reproduction above: https://github.com/Fuji-sunny/vuerepo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants