Jump to content
McKay Development

teerullino10

Member
  • Posts

    4
  • Joined

  • Last visited

Posts posted by teerullino10

  1. All I did was change the html deposit section to

    <!-- DEPOSIT MENU -->
    <div class="deposit">
    	<h1>Deposit Items</h1>
    	<ul class="deposit">
    		{{#each items}}
    		<li class="deposit item" data-assetid="{{this.assetid}}" data-classid="{{this.classid}}">{{market_hash_name}} (${{this.price}}) <img src="https://steamcommunity-a.akamaihd.net/economy/image/class/730/{{this.classid}}/150fx125f"> </li>
    		{{/each}}
    	</ul>
    </div>
    

    and it worked like a charm!!

  2. Hi, I'm a newbie coder and am having trouble with fetching csgo item images for an experimental exchange site.

    All this is what I have so far on deposit matters:

     

    This is the deposit section: http://prntscr.com/ik3xnx

    Here's the price update code:

    const _ = require('lodash');
    const request = require('request');
    
    const Price = require('../models/price');
    
    module.exports = interval => {
      update();
    
      setInterval(update, interval);
    };
    
    function update() {
      request('https://api.csgofast.com/price/all', (err, response, body) => {
        if (err) {
          console.log(err);
        } else {
          let json = {};
    
          try {
            json = JSON.parse(body);
          } catch (e) {
            console.log(e);
          }
    
          _.forOwn(json, (price, market_hash_name) => {
            Price.update(
              { market_hash_name },
              {
                $set: { price }
              },
              { upsert: true },
              err => {
                if (err) {
                  console.log(err);
                }
              }
            );
          });
        }
      });
    }
    

    And here's the HTML:

    <!-- DEPOSIT MENU -->
    <div class="deposit">
    	<h1>Deposit Items</h1>
    	<ul class="deposit">
    		{{#each items}}
    		<li class="deposit item" data-assetid="{{this.assetid}}">{{market_hash_name}} (${{this.price}})
    		{{/each}}
    	</ul>
    </div>
    

    How do I get the images to show up, for example over the item name?

×
×
  • Create New...