A lot of content in WEEX is interlinked with JS and CSS, so sometimes it is taken for granted that some functions are the same. For example, the a tag has a href attribute which is used to set the link to the HTML file. In Weex, the href is used to set the link to the javascript file. 2. Chinese characters are not allowed to be written in a label:

<a>Hello World</a>
Copy the code

If you want to write, use the text tag:

<a>
    <text>Hello World</text>
</a>
Copy the code

The above two points do not carefully look at the document is easy to ignore, has stepped on the pit, mutual encouragement.