从JSON对象

时间:2016-01-18 19:50:16

标签: javascript angularjs json

我想显示从JSON对象派生的数据。 JSON对象包含一个长字符串,如:

"String":"<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever since
the 1500s, when an unknown printer took a galley of type and scrambled it to
make a type specimen book.</p>"

我使用此代码加载此值

data-ng-bind-html="getHtml(selectedCategoryData[indexOfSelectedData].String)"

这不会创建新行并将整个字符串显示在一行中。当设备宽度结束时,它会隐藏该字符串中的其余文本。

我想自动调整字符串。当设备宽度结束时,它会自动创建正常<p>标记的换行符。

你知道我该怎么办?

1 个答案:

答案 0 :(得分:0)

听起来这更像是一个样式问题而不是JSON问题。你能尝试在容器上使用以下CSS吗?

display: block;
width: 100%;

如果我离开这里,提供一个关于正在发生的事情的JSFiddle可能会有所帮助。