src\assets
. Создай там папку ( если там много json будет) и положи туда json файлы. return this.http.get('/assets/file.json');
. Так же, чтоб получить данные, нужно сделать подписку вида: getJson().subscribe( ( data ) => {});
. $result = mysql_query("SELECT * FROM cam_list");
$myrow = mysql_fetch_array($result);
$data = [];
$data[0] = [];
for ($x=0; $x<5; $x++){
$data[0].push( $myrow[$x] );
}
$myrow = mysql_fetch_array($result);
$data[1] = [];
for ($x=0; $x<5; $x++){
$data[1].push( $myrow[$x] );
}
// Возможно нужно обработать данные для получения фронтом json формата
return $data;
export interface IRoomData {
adults: number;
children: number;
childrenAges: number[]|{age: any}[];
}
if(this.roomsData){
this.roomsData = this.roomsData.map((room) =>{
for(let i = 0; i < room.childrenAges.length; i++){
room.childrenAges[i] = {age: room.childrenAges[i]};
}
return room;
});
}
window.onresize = function () {
var resize = document.documentElement.clientWidth;
return resize;
}
// или
function getResize() {
var resize = document.documentElement.clientWidth;
return resize;
}
// if (mobileWidth <= '420') {//здесь нужно сравнит функцию getResize с 420
if(onresize () <= 420){}
// или
if(getResize() <= 420){}
var newWin = window.open('about:blank');
let promise = $http.get(myUrl).then(function (res) {
newWin.document.write(res.data);
var count = newWin.document.querySelectorAll('img').length;
newWin.document.querySelectorAll('img').forEach(function (el) {
el.onload = function () {
if(!--count){
newWin.focus();
newWin.print();
}
};
});
return true;
});
<div class="hockey-Date"
hockey-date-scroll
hds-item-width="50"
hds-active-id="$ctrl.activeId"
hds-items-length="8">
<div class="hockey-DateBlock" ng-repeat="date in $ctrl.dates" ng-class="{'active' : $index == $ctrl.activeId}">
{{date}}
</div>
</div>
scope: {
activeId: '=hdsActiveId'
},
<video
ng-repeat="src in video"
poster="{{poster}}"
{{$first ? 'autoplay' : 'autobuffer'}}
ng-show="$first"
src="{{src}}"></video>